// JavaScript Document

// WE START WHEN THE PAGE IS LOADED
$(document).ready(function() {

	
});


function getQuote(){
if ($("#idusr").val()==""){	
	
$("#regForm").html("");
$("#slide").fadeTo("slow", 0, function(){
				$.post("/tpl/freeQuote.tpl",function(data){
						document.getElementById("slide").style.display="block";
						$("#slide").html(data+"<br><br>");
						$("#middle").html("");
						$("#right").html("");
						$("#slide").fadeTo("slow", 1);	
				});
			});	
}else{
	window.location = "/new_quote.smr"
	}
}
