// JavaScript Document
$(document).ready(function(){


//ACCORDION BUTTON ACTION (ON CLICK DO THE FOLLOWING ACTION)
       $('.widget_header').click(function(){
    	//$('#alert').show();    
			$('.widget_content').slideUp('normal');
	
	     //IF THE NEXT SLIDE WASN'T OPEN THEN OPEN IT
		   if($(this).next().is(':hidden')==true){
			   $(this).next().slideDown('normal');
			   
			   
				   } 
	
        }); //end click
}); // end document ready function
