function css() {

	/* go on for IE in generall */
	if($.browser.msie && $.browser.version <= 6){

		$('#nav li, #search button').hover(function(){ 
			$(this).addClass('hover'); 
			
		},function(){ 
			$(this).removeClass('hover'); 
		});
	}

	$('#nav>li').mouseover(function(){ 
		var a, b, c, d, e;
		d = 0;
		e = 47;
		
		if($.browser.msie && $.browser.version <= 6) e = 50;
		
		$(this).children('ul').css({display: 'block', width: '200px'});			
		a = $(this).children('ul').children('li').size();
		
		for (b = 0; b < a; b++) {
			c = $(this).children('ul').children('li').children('a').eq(b).width();
			d =+ d+c+e;
			
		}
		//alert(d);
		$(this).children('ul').css({width: d+'px'});		
	});

	$('#nav>li').mouseout(function(){ $(this).children('ul').css({display: 'none'}); });

	$('.vcard .adr').next('.tel').addClass('sibling');

	h = $(window).height()-30;
	$('#page').css({minHeight: h+'px' });
}

$(document).ready(css);