function showSignup(){
	if(!jQuery.browser.msie){		
		jQuery(".dropdown1").animate(
			{top: "-13px"},
			125,
			function(){
				jQuery(".dropdown1").animate(
					{top: "-49px"},
					300,
					function(){
						jQuery("#homesignup").animate(
							{top: "-11px",
							opacity: 1},
							500,
							function(){
								jQuery("#homesignup").animate(
									{top: "-15px"},
									125
								);
							}
						);
					}
				);
			}
		);
	}else{
		jQuery(".dropdown1").animate(
			{top: "-13px"},
			125,
			function(){
				jQuery(".dropdown1").animate(
					{top: "-49px"},
					300,
					function(){
						jQuery("#homesignup").animate(
							{top: "-11px"},
							500,
							function(){
								jQuery("#homesignup").animate(
									{top: "-15px"},
									125
								);
							}
						);
					}
				);
			}
		);
	}
}
function hideSignup(){
	if(!jQuery.browser.msie){
		jQuery("#homesignup").animate(
			{top: "-11px"},
			125,
			function(){
				jQuery("#homesignup").animate(
					{top: "-119px",
					opacity: 0},
					500,
					function(){
						jQuery(".dropdown1").animate(
							{top: "-13px"},
							300,
							function(){
								jQuery(".dropdown1").animate(
									{top: "-17px"},
									125
								);
							}
						);
					}
				);
			}
		);
	}else{
		jQuery("#homesignup").animate(
			{top: "-11px"},
			125,
			function(){
				jQuery("#homesignup").animate(
					{top: "-119px"},
					500,
					function(){
						jQuery(".dropdown1").animate(
							{top: "-13px"},
							300,
							function(){
								jQuery(".dropdown1").animate(
									{top: "-17px"},
									125
								);
							}
						);
					}
				);
			}
		)
	}
}
jQuery(document).ready(function(){
	jQuery(".dropdown1").click(function(e){
		e.preventDefault();
		showSignup();
	})
	jQuery(".dropdown2").click(function(e){
		e.preventDefault();
		hideSignup();
	});
});
