function css() {

	/* go on for IE in generall */
	if($.browser.msie){
		
		/* take care IE 6 only */
		if($.browser.version <= 6) {
		
			$('.meta-nav li:first-child, #footer ul li:first-child').addClass('first-child');
			$('#page').wrap('<div id="wrapper"></div>');
		
		}
		
		$('hr.separator').wrap('<span class="separator"></span>');
	}
	
	
	
	$('#nav>li').each(function(n){
		n = n+1;
		$(this).addClass('item-'+n);
	});
	

	$('#nav ul').each(function(u){
		if($(this).css('display') == 'block'){ 
			var uH = $(this).height();
			$('#nav').css('paddingBottom',uH-10+'px');
		}
	});
	
	
	if($('#page').is('.post-cat')){ $('#nav .current-cat-parent li').removeClass('current-cat'); }
	if($('#page').is('.page-cat')){ $('#nav .current_page_item li').eq(0).addClass('current_page_item'); }
	
}

$(document).ready(css);