$(function(){
	
	$("#triggerAll").toggle(function(){
		$("#previous, #contact, #flyerWrap, #cdWrap, #flyerWrap2, #videoWrap, #radioWrap, #mailingWrap").show('slow');
	},function(){
		$("#previous, #contact, #flyerWrap, #cdWrap, #flyerWrap2, #videoWrap, #radioWrap, #mailingWrap").hide('slow');
	});
	
	$("#trigger, #trigger2, #trigger3, #trigger4, #trigger5, #trigger6, #trigger7, #trigger8").toggle(function(){
		$(this).parent().find("div").toggle('slow');
	},function(){
		$(this).parent().find("div").toggle('slow');
	});
	
});