$(document).ready(function() { 
$("#offershandle").click(function(){
	var attrtop = $("#offersdropdown").css("top");
	if(attrtop === "-150px"){
		$("#offersdropdown").animate({top: 0}, 'slow');
		
		}
		else
		{
		$("#offersdropdown").animate({top: -150}, 'slow');
		}
});

/*
$("#nav li").hover(function(){
$("li.current .subnav").fadeOut("slow");
$(this).children("ul.subnav").fadeIn("fast");

}, function(){
$(this).children("ul.subnav").hide();
//$(this).children("ul.subnav").fadeOut();
$("li.current .subnav").fadeIn("fast");
});
*/


	
}); 
