// JavaScript Document

jQuery(function(){
		
		//external links
		jQuery("a[href^='http:']").not("[href*='brooklyngreenway.org']").attr('target','_blank');
		
		//home page innerfade 
		jQuery('ul#big-callout').innerfade({ animationtype: 'fade', speed: 2500, timeout: 7000, type: 'sequence', containerheight: '340px' }); 
});


// remove text in email signup field 
  document.getElementById("txtSearch").onfocus = function(){
         if(this.value == "your e-mail address") this.value = "";
     };
     document.getElementById("txtSearch").onblur = function(){
         if(this.value == "") this.value = "your e-mail address";
     };
