// Jquery
$(document).ready(function(){
	
	// Show the dropdowns
	$("#selectastate").click(function(event){
		$("#dropdown-states").show("fast");
		return false;
	});
	$("#aboutus").mouseover(function(event){
		$("#dropdown-aboutus").show("fast");
		return false;
	});
	
	// Hide the dropdowns
	$("#dropdown-states, #dropdown-aboutus").hover(function() {
		/* Do nothing  */
		}, function() {
		$("#dropdown-states").hide("fast");
		$("#dropdown-aboutus").hide("fast");
		});
	$("#storelocator, #grandopenings, #careers, #contactus").hover(function() {
		$("#dropdown-states").hide("fast");
		$("#dropdown-aboutus").hide("fast");
		}, function() {
		/* Do nothing  */
		});
	
	$("#wrapper").hover(function() {
		/* Do nothing  */
		}, function() {
		$("#dropdown-states").hide("fast");
		$("#dropdown-aboutus").hide("fast");
		});
	
	
});