// jquery code
jQuery.noConflict();

jQuery(document).ready(function(){

	console.log("ready for some jquery");
	
	// Get the values from the form elements.
	jQuery('#contact').ajaxForm( { target: '#message', url: 'sendform.php' } ) ;
	
	jQuery("#sub").bind("click", function(){
         console.log("...submit");
         //jQuery('#sub').hide();
   	});

	
	/*
	jQuery.ajax({
   		type: "POST",
   		url: "some.php",
   		data: "name=John&location=Boston",
   		success: function(msg){
     		alert( "Data Saved: " + msg );
   		}
 	});
	*/
	
});


