function css() {

	/* go on for IE in generall */
	if($.browser.msie){
		
		/* take care IE 6 only */
		if($.browser.version <= 6) {
		
		$('li:first-child, div:first-child').addClass('first-child');
		
		}
	}
	
	
	$('#nav li a').each(function(i){
		$(this).mouseover(function(e){
			$('#nav li a').removeClass('act');
			$(this).addClass('act');
			$('.tab').hide().eq(i).show();
		});
	});
	
}

$(document).ready(css);