﻿$(document).ready( function() {
	
	$(".navbox1").find(".navbutton1").hover(function () {
		$(this).css("background-image","url(http://www.salsacrazysf.com/images/Untitledup.jpg)");
		}, function () {
		$(this).css("background-image","url(http://www.salsacrazysf.com/images/Untitled.jpg)");
	});	
		
	$("#dropdown").hover( function () {
		$(".dropitems").show().find("a").hover(function () {
			$(this).parents("li").addClass("hilite");
			}, function () {
			$(this).parents("li").removeClass("hilite");
		});	
		}, function () {
		$(".dropitems").hide();
	});		
	
	$("#dropdown").hover( function () {
		$(".dropitems").show().find("a").hover(function () {
			$(this).css("color", "black");
			}, function () {
			$(this).css("color", "white");
		});	
		}, function () {
		$(".dropitems").hide();
	});	
	
	$("#dropdown2").hover( function () {
		$(".dropitems2").show().find("a").hover(function () {
			$(this).parents("li").addClass("hilite");
			}, function () {
			$(this).parents("li").removeClass("hilite");
		});	
		}, function () {
		$(".dropitems2").hide();
	});	
	
	$("#dropdown2").hover( function () {
		$(".dropitems2").show().find("a").hover(function () {
			$(this).css("color", "black");
			}, function () {
			$(this).css("color", "white");
		});	
		}, function () {
		$(".dropitems2").hide();
	});	

	
	});