$(document).ready(function() {   
 
	$('#box-header div ul li').bind('mouseover', function() {
		$(this).find('ul').show();
	});
	
	$('#box-header div ul li').bind('mouseout', function() {
		$(this).find('ul').hide();
	});
	
	$('#box-header div ul li a').bind('click', function() {
		if($(this).parent().find('ul').length)
		{
			return false;
		}
	});

}); 
