// adacelvaccine.com menu js code
// When the page is ready
$(document).ready(function(){
	
	$("#top_menu img").hover(
		function()	{
			var o = $(this);
			// don't change active menu item
			if (o.attr("class") != "active") {
				var myMenuImg = o.attr("id");
				$("#" + myMenuImg).attr("src" , "images/" + o.attr("id") + "_on.jpg");
			}
		}, 
		function()	{
			var o = $(this);
			// don't change active menu item
			if (o.attr("class") != "active") {
				var myMenuImg = o.attr("id");
				$("#" + myMenuImg).attr("src" , "images/" + o.attr("id") + "_off.jpg");
			}
		}
	);

	$("#learn_gift_btn").click(function()	{
		if($("#gift_dropdown").is(":visible"))
			$("#gift_dropdown").slideUp("slow");
		else
			$("#gift_dropdown").slideDown("slow");
	});
	
	$("#gift_dropdown").slideDown("slow", function() {
		setTimeout("$('#gift_dropdown').slideUp('slow')", 5000)
	});
});

