jQuery(document).ready(function(){
	$("#showPanel").click(function(){
		$("#colright").animate({marginLeft:"309px"}, 200).hide("fast");
		$("#panel").animate({marginLeft:"0px"}, 400 );
		$("#colleft").animate({width:"395px", opacity:1}, 400 );
		$("#showPanel").animate({width:"0px", opacity:0}, 400).hide("slow");
	});
	$("#hidePanel").click(function(){
		$("#panel").animate({marginLeft:"-395px"}, 500 );
		$("#colleft").animate({width:"0px", opacity:0}, 400 );
		$("#showPanel").show("normal").animate({width:"28px", opacity:1}, 200);
		$("#colright").animate({marginLeft:"30px"}, 500).show("fast");
	});
});
