//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use

$(document).ready(function()
{
	$("#switch_forgot").click(function () {
		 $("#log_box").hide("fast");
		 $("#pass_box").show("fast");
	});
	
	$("#switch_login").click(function () {
		 $("#log_box").show("fast");
		 $("#pass_box").hide("fast");
	});
	
		$("#switch_order_forgot").click(function () {
		 $("#log_order").hide("fast");
		 $("#pass_order").show("fast");
	});
	
	$("#switch_order_login").click(function () {
		 $("#log_order").show("fast");
		 $("#pass_order").hide("fast");
	});
	
});
