function css() {


	h = $('body').height();
	$('#inner').css({minHeight: h-440+'px' });
	/* go on for IE in generall */
	if($.browser.msie){
		
		$('#inner').css({minHeight: h-460+'px' });
		
		/* take care IE 6 only */
		if($.browser.version <= 6) {
			$('#nav li:first-child, #bar-left #bar-menu li:first-child').addClass('first-child');
		}
	}
	
	$('.nm-item .img').parent().addClass('item-img');

	$('#flash-ins').flash({
	
		src: 'flash/header/scene.swf', 
		wmode: 'transparent',
		width: 350,
		height: 260
	});		
}

$(document).ready(css);
