jQuery(function( $ ){


$('#Slideshow').cycle({ 
	fx: 'fade',
	  speed:  600,
      timeout: 13000,
      pager:  '.Pager',
      before: Zindex,
      after: Zindex

});

function Zindex() {
$("#Slideshow,#Slideshow DIV").css({'zIndex':1});
$('#Navigation').css('zIndex',100);
}
      
$('INPUT.Subscribe').focus( function() { if($(this).attr("value") == "Stay posted via email") $(this).attr("value", ""); });
$('INPUT.Subscribe').blur(function() { if($(this).attr("value") == "") $(this).attr("value", "Stay posted via email"); });

$('#Navigation LI').stop().hover( function() { 
		
		$(this).find('LI').show();
	}, 
		function() {$(this).find('LI').hide();
	});
	
	
$('.Gray INPUT, .Gray TEXTAREA').focus( function() { $(this).css("background-color",'#fffff1'); })
$('.Gray INPUT, .Gray TEXTAREA').blur( function() { $(this).css("background-color","#fff"); })

});



