// NAVIGATION.JS

$(document).ready(function() {

	// Navigation bars
	$(".dropdown").hover(function() {
		$(this).find("ul").css('visibility', 'visible');
		$(this).find(".dropdown-top").addClass('nav-highlight');
		$(this).find(".dropdown-top").css('color', '#fff');
		
	}, function() {
		$(this).find("ul").css('visibility', 'hidden');
		$(this).find(".dropdown-top").removeClass('nav-highlight');
		$(this).find(".dropdown-top").css('color', '#fff');

	});


	// Dealer login


	$("#dealer-login-user").click(function() {
		if($(this).val() == "email address") {
			$(this).val("");
			$(this).css({ color: "#333333", fontStyle: "normal" });
		}
	});
	$("#dealer-login-pass").click(function() {
		if($(this).val() == "password") {
			$(this).val("");
			$(this).css({ color: "#333333", fontStyle: "normal" });
		}
	});

});
