jQuery(document).ready(function(){
   // accordions 
	jQuery('.accordion .content').hide();
	jQuery('.accordion .expand').show().click(function() {
		jQuery(this).parent().next('.content').fadeToggle('slow');
		jQuery(this).parent().toggleClass('active');
		return false;
	})

	// email signup reveal
	//if(jQuery('#social-e').length) {
	//	jQuery('#social-e a').click( function() {
	//		return false;
	//	})
	//	jQuery('#social-e').hover( function() {
	//		jQuery('#e-pop').fadeToggle('fast');
	//		return false;
	//	})
	//}
	
	// dropdowns
	jQuery(function(){
		jQuery('ul.sf-menu').superfish();
	});

	// slideshow
	if(jQuery('#slides').length) {
	   jQuery('#slides')
	      .after('<div id="nav-slides"></div>')
	      .cycle({
	         timeout: 8000,
				height:336,
				fit:true,
	         pager:'#nav-slides'
	      });
	}

// run locally
env = window.location.host;
if(env.match(/local/g)) {  }
	
	
		
});

