$(document).ready(function(){
		$('#product-menu').children('li').hover(
			function() { $(this).children('ul').show(); }, //$('ul', this).css('display', 'block');
			function() { $(this).children('ul').hide(); });
	});
