function css() {

	/* go on for IE in generall */
	if($.browser.msie){
		
		/* take care IE 6 only */
		if($.browser.version <= 6) {
			
			$('#top #nav li:first-child, .mod-menu li, #breadcrumbs li:first-child, .pagination li:first-child, #footer ul li:first-child, #homepage .mod-box li:first-child').addClass('first-child');
			
		}
		
		$('.pagination li:last-child, .cnt-clear .mod-box li:last-child').addClass('last-child');
	}

	
	$('#content').append('<span id="cnt-end"><!-- ie6 --></span>');
	
}

$(document).ready(css);