$(document).ready(function() {
	
	// Expand Panel bullettins
	$("#bullettins_open").click(function(){
		$("div#bullettins_panel").slideDown("slow");
	
	});	
	
	// Collapse Panel bullettins
	$("#bullettins_close").click(function(){
		$("div#bullettins_panel").slideUp("slow");	
	});	
	
	// Expand Panel brochure
	$("#brochure_open").click(function(){
		$("div#brochure_panel").slideDown("slow");
	
	});	
	
	// Collapse Panel brochure
	$("#brochure_close").click(function(){
		$("div#brochure_panel").slideUp("slow");	
	});	
	
		
});