	var loading = "<div style=\"margin-left:250px; margin-top:50px\"><img src='/images/ajax-loader.gif' border='0'>&nbsp; Loading...</div>";
	
	//method that redirects passed URLs
	function redirect(location){

		window.location.href=location;

	}
	
	//method that hides form if form is submitted without errors and replace it with image loader
	function hideForm(form){

		jQuery("div#" + form).html(loading);
		

	}
	
