function css() {

  $(".lightbox").lightbox();
  
	h = $('body').height();
	//$('#inner').css({minHeight: h-335+'px' });
	/* go on for IE in generall */
	if($.browser.msie){
		
		//$('#inner').css({minHeight: h-370+'px' });
		
		/* take care IE 6 only */
		if($.browser.version <= 6) {
			//$('#inner').css({height: h-370+'px' });
			
			$('#footer ul li:first-child').addClass('first-child');
		}
	}
	
}

$(document).ready(css);
