$(document).ready(function() {
	$('#header').append($('.intro'));
	
	$('#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');
		   //$(this).css({'overflow' : 'hidden', 'overflow-x' : 'hidden', 'overflow-y' : 'hidden'});
	});
});

