 
//Newsletter
   $(document).ready(function(){
      
	   ////////////////
	    $("#OpenSubscribe").click(
		
			function() {
			
            	$("#Newsletter").animate ( { height: "50px" }, 500, function () {
				
					focusIt();
				
				});

        	}
		
		);		
		////////////////
		$("#CloseSubscribe").click(
		
			function() {
			
            	$("#Newsletter").animate ( { height: "1px" }, 500 );
				
        	}
		
		);		
		////////////////
		
		
		if ($.browser.msie && $.browser.version.substr(0,1)<7) { 
			document.execCommand('BackgroundImageCache', false, true);
			
			$("ul.sf-menu ul  li").css('background','#fff url(/images/nav-more.gif) 0 0 no-repeat');
			$("ul.sf-menu-top ul  li").css('background','#fff url(/images/nav-more.gif) 0 0 no-repeat');
		};
		
        $("ul.sf-menu").superfish({ 
            animation: {height:'show'},   // slide-down effect without fade-in 
            delay:     200               // 1.2 second delay on mouseout 
        }).find('ul').bgIframe({opacity:false});  
		
		 $("ul.sf-menu-top").superfish({ 
            animation: {height:'show'},   // slide-down effect without fade-in 
            delay:     200               // 1.2 second delay on mouseout 
        }).find('ul').bgIframe({opacity:false}); 
		
	
    });
	
	
	function focusIt() {
	
		var mytext = document.getElementById("FocusForename");
		mytext.focus();
		
		
		$("#Newsletter").animate({  opacity: 0.4 }, 300, function () {
				
					$("#Newsletter").animate({  opacity: 1 }, 100, function () {
																			  
							$("#Newsletter").animate({  opacity: 0.4 }, 300, function () {	   
									$("#Newsletter").animate({  opacity: 1 }, 100);								  
							});
																			  
					});
				
		});
		
	};
