$(document).ready(function() 
{
	$('#myform1').ajaxForm({ 
			target: '#responsediv',
			beforeSubmit: showSpinner
	}); 
});

function showSpinner() { 
	var $out = $('#responsediv');
	$out.html("<p class=\"center spinner\"><img src=\"../img/spinner.gif\" alt=\"Spinner\" /></p>");
	return true; 
} 

///////////////////////////////////////////////////////////////////////

$(document).ready(function() 
{
	var headers = new Array("golfer", "office-stress", "neck-pain", "hand", "massage", "family", "small-hand", "couple", "couple2", "foot", "wellness", "wellness2", "wellness3", "butterfly", "stones", "stones2");
	i = Math.floor(Math.random()*headers.length);
	$("#header-home").addClass(headers[i]);
	
	$("#rhs dl dt").toggle(
		function () {
			$(this).next().slideDown();
			$(this).addClass("on");
		},
		function () {
			$(this).next().slideUp();
			$(this).removeClass("on");
		}
	);
	
});
