function css() {

	/* go on for IE in generall */
	if($.browser.msie){
		
		/* take care IE 6 only */
		if($.browser.version <= 6) {
		
			$('li:first-child').addClass('first-child');
			
			$('li').hover(function(){
				$(this).addClass('hover');
			}, function(){
				$(this).removeClass('hover');
			});
			
			$('#top img').supersleight({shim:'/pliki/javascript/x.gif'});
		}
		
		$('li:last-child').addClass('last-child');
	}
	
}

$(document).ready(css);
