// JavaScript Document


$(document).ready(function(){
	
	$(".mainNav li").hover (function () {
		$(this).addClass("active");	
		$(this).children(".mainAnchor").css({color: "#621C1C"});
	}, function () {
		$(this).removeClass("active");
		$(this).children(".mainAnchor").css({color: "#000"});
	});
	
	$(".dropdown li").hover(function () {
		$(this).css({background: "#000"});								
	}, function () {
		$(this).css({background: "none"});								  
	 })
	
});



