// JavaScript Document
$(document).ready(function(){
$('#1stImage').mouseover(function(){
//alert("sudip Here ");								   
								   
	});

$('#2ndImage').mouseover(function(){
//alert("sudip 2 Here ");								   
								   
	});

$('#3rdImage').mouseover(function(){
//alert("sudip 3 Here ");								   
								   
	});

$('#4thImage').mouseover(function(){
//alert("sudip 4 Here ");								   
								   
	});

$('#customerLogin').click(function(){
								   
	$.ajax({
				type: "POST",
				url: "customarLogin.php",
				data: "",
				success: function(data){
					 $.blockUI({ message:data ,css:{top: '10%','cursor':'default'}});
					//alert(data);
				    }
			   });
	
		 });
$('#customerNewAccount').click(function(){
								   
	$.ajax({
				type: "POST",
				url: "customarNewAccount.php",
				data: "",
				success: function(data){
					 $.blockUI({ message:data ,css:{top: '5%','cursor':'default'}});
					//alert(data);
				    }
			   });
	
		 });


});

function closeContent(){
	$.unblockUI();	
}

function loginPost(){
	
$.ajax({
									type: "POST",
									url: "loginCheck.php",
									data: "username="+$('#username').val()+"&password="+$('#details').val(),
		                         
									success: function(data){
									if(data)
									{
									  window.location.href='';
									  $.unblockUI();
									}
									else{
										alert('There is some problem in add');
										
										}
									
									}
									});	
	
}
