/*
 * 	Easy Slider 1.5 - jQuery plugin
 *	written by Nikesh Kumar
 *  under guidelines of Pixel Webtech Employee	
 *	http://www.pixelwebtech.com/
 *
 *	Copyright (c) 2011 Pixel Webtech (http://www.pixelwebtech.com)
 */



$(document).ready(function() {
	
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("slow");
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
		
});
