// Functionality to show/hide the log-in box on click
$(window).load(function(){

	$("div.panel_button span, div.panel_button img").live('click', function(){
		$("div#panel").animate({
			height: "135px"
		})
		.animate({
			height: "130px"
		}, "fast");

		$("div.panel_button a, div.panel_button span, div.panel_button img").toggle();	
		$("#hide_button, #hide_button span, #hide_button img").show();	
	});	
	
   $("div#hide_button").live('click', function(){
   		
		$("#hide_button, #hide_button span, #hide_button img").hide();
		
		$("div#panel").animate({
			height: "0px"
		}, "fast");
   });	
   
   
});
