jQuery(document).ready(function($){
		$(".followuslink").click(function() {
			if ($("#openCloseIdentifier").is(":hidden")) {
				$("#newsletter-dropdown").stop().animate({marginTop: "-123px"}, 500 );
				$("#openCloseIdentifier").show();
			} else {
				$("#newsletter-dropdown").stop().animate({marginTop: "-14px"}, 500 );
				$("#openCloseIdentifier").hide();
			}
		});	
		
		
		// On roll over
		$(".followuslink").mouseover(function() {
			if ($("#openCloseIdentifier").is(":hidden")) {
			} else {
				$("#newsletter-dropdown").stop().animate({marginTop: "-118px"}, 300 );
			}
		});	
		$(".followuslink").mouseout(function() {
			if ($("#openCloseIdentifier").is(":hidden")) {
			} else {
				$("#newsletter-dropdown").stop().animate({marginTop: "-123px"}, 300 );
			}
		});	
		
		
});
