$(document).ready(function(){
	$(".accordion").accordion({ active: false, collapsible: true });
$('textarea').focus(function() {
		if($(this).attr("value") == "Message") { $(this).attr("value",""); }
	});
	$('textarea').blur(function() {
		if($(this).attr("value") == "") { $(this).attr("value","Message"); }
	});
	
	$('input#name').focus(function() {
		if($(this).attr("value") == "Name") { $(this).attr("value",""); }
	});
	$('input#name').blur(function() {
		if($(this).attr("value") == "") { $(this).attr("value","Name"); }
	});
	
	$('input#email').focus(function() {
		if($(this).attr("value") == "Email") { $(this).attr("value",""); }
	});
	$('input#email').blur(function() {
		if($(this).attr("value") == "") { $(this).attr("value","Email"); }
	});
$('#submitform').ajaxForm({
			target: '#error',
			success: function() {
			$('#error').fadeIn('slow');
			}
		});
	 }); 