function css() {

	/* go on for IE in generall */
	if($.browser.msie){
		
		/* take care IE 6 only */
		if($.browser.version <= 6) {
			
			$('#top #sub-nav li:first-child, #footer ul li:first-child, #top #nav li:first-child, #content #news-mod>ul, #content #news-mod li:first-child, #footer #copy>a').addClass('first-child');
			
			$('img').css('behavior','url(js/iepngfix.htc)');
		}
	}
	
	$('#banner, #wrapper').append('<span class="x"></span>');
	
	$('#wrapper').not('.col-0-lay').wrap('<div class="outer"></div>');
	
	$('.col-list li h6').each(function(){
	
		var empty = $(this).next().is('span');
		
		if(empty)			
			$(this).addClass('full');
		else
			$(this).addClass('empty');
	
	});
}

$(document).ready(css);