function css() {

	/* go on for IE in generall */
	if($.browser.msie){
		
		/* take care IE 6 only */
		if($.browser.version <= 6) {
		
			$('.gal-mod li').hover(function(){ $(this).addClass('hover'); }, function() {  $(this).removeClass('hover'); });
		
		}
	}
	
	
	htmlHeight = $('html').height();
	if($.browser.mozilla && $.browser.version.substr(0,3)=='1.9'){
		htmlHeight = $(window).height();
	}
	pageHeight = $('#page').height();
	wrapperHeight = $('#wrapper').height();
	
	if(htmlHeight>pageHeight){
		newHeight = wrapperHeight+(htmlHeight-pageHeight);
		$('#wrapper').height(newHeight);
	}
	
	
}

$(document).ready(css);
