function handleLoad(){
    	    	
    		
						
			$('#panel').animate({
      				height: '0px'
      			});
      		     		
    		$("div#expand").show();
			
			$('#expand').animate({
      				height: '25px'
      			});
      			
      		}
    	
      $(document).ready(function(){
      	 initEvents();
      	 $("div#expand").show();
      });
      
      function initEvents(event){
      	var showed = false;
      	
      	
      	$('.show').click(function(){
      		
      		if(!showed){
      			$('#panel').animate({
      				height: '500px'
      			});
      			showed = true;
      			
    		$("div#contract").show();
      		$("div#expand").hide();

      		}else{
      			$('#panel').animate({
      				height: '0px'
      			});
      			showed = false;
      		$("div#contract").hide();
      		$("div#expand").show();
      		}
      		      		
     	 });
      }
