function showRequest(formData, jqForm, options){
    var queryString = $.param(formData);
//alert (queryString);
    return true
}
function showResponse(responseText, statusText){
}
$().ready(function(){
		$("#ProfileSearch").validate({
		    submitHandler: function(form){
			$("#divList").html('<br /><image src="http://www.subamangalam.com/images/loadgraphic.gif" />').fadeIn("slow");
		        $('#ProfileSearch').ajaxSubmit({
		            target: '#divList',
		            beforeSubmit: showRequest,
		            success: showResponse
		        });
		    }
		})
});
function loadContent(at, id){ 
$("#" + at).html('<image src="http://www.subamangalam.com/images/loadgraphic.gif" />').fadeIn("slow");; 
$("#" + at).load("http://profiles.subamangalam.com/" + id ).fadeIn(3000); 
}  
function loader(){ 
loadContent('divList', 'prf_list.php'); } 
function loadEditor(at, id){ 
//$("#MovieInsert").expire('click');
$("#" + at).html('<image src="http://www.subamangalam.com/images/loadgraphic.gif" />').fadeIn("slow"); 
$("#" + at).load("http://profiles.subamangalam.com/" + id ).fadeIn(3000); 
}
