$(function(){
	$("input#cSubmit").click(function(){
		if( ($("input#cName").val() == "") || ($("input#cEmail").val() == "") || ($("textarea#cMsg").val() == "") ){
			alert("Complete the contact form, or I'll be confused.");
			return false;
		}else{
			$("form#cForm").submit();
		}
	});
	$("#dragMe").draggable({containment: "parent"});
	$("#dropMe").droppable({
		drop: function(e,ui){
			//alert("dropped");
			$("#cForm").submit();
		}
	});
});
