   $(document).ready(function(){
   
   
	$("div.expandable div.open").hide();
   
    $("div.expandable div.closed").mouseup(function(){
	  $(this).hide();
	  $(this).next('div.open').show();	
		//event.preventDefault();

    });
	
	$("div.expandable div.closed a").click(function(event){
	  
		event.preventDefault();

    });
	
	
	$("div.expandable div.open span.expandable_hide").mouseup(function(){
	  $(this).parent().hide();
	  $(this).parent().prev('div.closed').show();
    });
	
	$("div.expandable div.open a.expandable_hide").mouseup(function(){
	  $(this).parent().hide();
	  $(this).parent().prev('div.closed').show();
    });
	
  });