// JavaScript Document
//$(function() {
	//trigger ajax on submit
//	$('#contactForm').submit( function(){
function sendFormJ() {		
		//hide the form
		$('#contactForm').hide();
		
		//show the loading bar
		$('.loader').append($('.bar')); 
		$('.bar').css({display:'block'});
		
		//send the ajax request  
		$.get('dvd.php',{name:$('#name').val(), email:$('#email').val(), address:$('#address').val(), city:$('#city').val(), state:$('#state').val(), zip:$('#zip').val(), number:$('#number').val(), captcha_code:$('#captcha_code').val()},
	
		//return the data
		function(data){
			//hide the graphic
			$('.bar').css({display:'none'}); 
			alert(data);
			 $('#contactForm').show();  
		});	
	
		//stay on the page					
		return false;	
	//});
//});
}

