
$(document).ready(function() {
	
	// Expand Panel
	$("#open").click(function(){
		closeLSlider();
		//$("div#panel").slideDown("slow");
		$("div#toppanel").animate({"top":"+=340px"},"slow");
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		//$("div#panel").slideUp("slow");	
		$("div#toppanel").animate({"top":"-=340px"},"slow");
		
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
		
		
});



function closeLSlider()
{
	if(hodeshow ==false)
	{
		hodeshow =true;
//						$("#floating-box #back").show({direction: "horizontal"})			;  
						$("#floating-box").animate({"left":"-=136px"},"slow");
						//$("#floating-box #back").attr("src","path")
   						//$("#floating-box #front").html("Contact")
		}
	
}
