$(document).ready(function(){


$(".navbar td").hover(function() {
	$(this).stop().animate({ backgroundColor: "#000000" }, 'fast');
}, function() {
	$(this).stop().animate({ backgroundColor: "#000060" }, 'slow');
});

$(".navbar td, td.links").click(function(){
   	window.location=$(this).find("a").attr("href");return false;
});


$(".nav-div .toggle-menu").hover(function() {
	$(this).parent().find(".dropdown").animate({ opacity: 1 }, 200);
}, function() {

});

$(".nav-div .dropdown").hover(function() {

}, function() {
	$(this).stop().animate({ opacity: 0 }, 500);
});

$(".nav-div .dropdown").stop().animate({ opacity: 0 }, 2);

});
