$(document).ready(function(){
						   
	$('#mailing-list').click(function(){
									  
		$(this).next().toggle(300);
	
	});
	
	if($('.slideshow-items li').length > 1){
		$('.slideshow-items').cycle({ 
			fx:     'fade', 
			speed:  'normal', 
			timeout: 0, 
			pager:  '.slideshow-nav', 
			pagerAnchorBuilder: function(idx, slide) { 
				// return selector string for existing anchor 
				return '.slideshow-nav li:eq(' + idx + ') a'; 
			} 
		});
	}
	else{
		$('.slideshow-items li').show();
	}
						   
});
