//////////////////////////////////////////////////////////////////////////////////////////
////on body load arguments
//////////////////////////////////////////////////////////////////////////////////////////
$(document).ready(function(){
						   
	$(".resetFormElementInfo").click(function () { 
		 if(this.name == $(this).val())
			$(this).val("");
	});
	
	$(".resetFormElementInfo").blur(function () { 
		 if($(this).val() == "")
			$(this).css("text-transform","capitalize").val(this.name);
	});
	
	
	$(".formElement_highlight").click(function () { 
		$(this).css("background-color","#FDFFB6");
	});
	
	$(".formElement_highlight").blur(function () { 
		$(this).css("background-color","#FFFFFF");
	});
	
	$('a.media').media();
});

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


function display_survey_form(){
	$.get('<?=PAGEPATH?>survey/surveyForm.php', function(data) {
		$("#surveyForm").html(data);
		//$("#facebox .popup").css("top","0");
		//$("#facebox .body").css("width","500px");
	});
}
function display_survey_formLater(){
	alert('We have opened the survey in a new window underneath this one.\n\nPlease use that to participate after your visit.\n\nThanks');
	window.open('<?=PAGEPATH?>survey/surveyFormLater.php','SEE_Survey','width=880,height=600,resizable=yes,scrollbars=yes').blur();
	//window.focus();
	jQuery(document).trigger('close.facebox')
}

function display_dont_survey(){
	$.get('<?=PAGEPATH?>survey/notsurvey.php', function(data) {
		//do something
		jQuery(document).trigger('close.facebox')
	});
}


//////////////////////////////////////////////////////////////////////////////////////////
////GENERAL FUNCTIONS
//////////////////////////////////////////////////////////////////////////////////////////

