jQuery(document).ready(function() {
	// Expand Panel
	jQuery("#openPanelAction").click(function(){
		jQuery("#CMSFullInfoPanel").slideDown("slow");
	});	
	
	// Collapse Panel
	jQuery("#closePanelAction").click(function(){
		jQuery("#CMSFullInfoPanel").slideUp("slow");	
	});		
	
	// Switch buttons
	jQuery("#toggleButtons a").click(function () {
		jQuery("#toggleButtons a").toggle();
	});		
		
});
