$(document).ready( function() {
	$(".navbox1").find(".navbutton1").hover(function () {
		$(this).css("background-color","#581D1D");
		}, function () {
		$(this).css("background-color","#803338");
	});	
	$(".navbox2").find(".navbutton2").hover(function () {
		$(this).css("background-color","#2C2E2E");
		}, function () {
		$(this).css("background-color","#5E6162");
	});		
	$("#dropdown").hover( function () {
		$(".dropitems").show().find("a").hover(function () {
			$(this).css("color","blue");
			}, function () {
			$(this).css("color","maroon");
		});	
		}, function () {
		$(".dropitems").hide();
	});		
	$(".threeboxmenu").find(".bigbox").hover(function () {
		$(this).click( function() {
		    window.location = $(this).attr("url");
		});	
		$(this).css("background-color","#3CB4B4");	
		$(this).find(".topic").hide();
		$(this).find(".topicdesc").show();
		}, function () {		
		$(this).css("background-color","#B43C3C");
		$(".topic").show();
		$(".topicdesc").hide();
	});					
});