$(document).ready(function() {
	$('#header > .sitemenu > ul > li').hover(function(){
			$(this).css('overflow', 'visible');
			$(this).find('ul').css('display', 'block');
			$(this).find('ul').css('height', 'auto');
	}, function() {
			$(this).find('ul').css('height', '0px');
			$(this).find('ul').css('display', 'none');
	});
});

