$(document).ready(function() {
						   
	$('#bg-lines').css('height', $(document).height());

	$('#top-menu ul li').hover(
		function() {
			var ul = $(this).find('ul');
			$(ul).fadeIn();
		}, 
		function() {
			var ul = $(this).find('ul');
			$(ul).fadeOut();
		}
	);

});
