/***********************
MR MOVE 
By Ken Kelly
Apr 2011
************************/

function Contact(form, type) {
	
	// alert(form);
	var body = '';
	for (var i=0; i<form.length; i++) {
		if (form[i].name == 'phone' && form[i].value == '') { var nophone = 1; }
		if (form[i].name == 'email' && form[i].value == '') { var noemail = 1; }
		// alert(form[i].name +' : '+ form[i].value);
		body += '&'+ form[i].name +'='+ form[i].value;
	}

	if (nophone == 1 || noemail == 1) {
		alert("Please enter a phone number and an email address");
		return false;
	}
	
	// alert(body);
	
	$.ajax({
	type: "POST",
	url: "/emailer.php",
	data: body,
	success: function(msg){
		// alert( "Sent: " + msg );
		if (type) {
			var msgh = '.'+type;
		} else {
			var msgh = '.other';
		}
		$(msgh).html('<span class="success">Sent!</span>');
	},
	error: function(msg){
		alert("An error occurred.. please try again");
	}
	});
	return false;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

$(document).ready( function() {
	var html = $(".inner-content").html();
	var addthis = '<div class="addthis_toolbox addthis_default_style addthis_32x32_style"><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a><a class="addthis_counter addthis_bubble_style"></a></div>';
	
	$(".inner-content").html( addthis + html );
} );
