$(document).ready(function(){

   $("#newsletter-join").fadeIn(900);

	$("#primary-nav li a").hover(function() {

		$(this).stop().parent().find("ul").fadeIn('fast').show();
		$(this).addClass("subhover");
		$(this).parent().hover(function() {
		}, function(){
			$(this).stop().parent().find("ul").fadeOut('fast');
			$(this).removeClass("subhover");
		});
		});

	//$("#newsletter-form .button").attr('src', ''); 
	
		$("#newsletter-join a.close").click(function() { 
       $("#newsletter-join").fadeOut('slow');
        return false;});
});