/*
Panel slider - http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
*/


$(document).ready(function() {
	
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("slow");
		return false;
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");
		return false;
	});	
		
		
});
