//
// BEGIN functions for wiping mailing list signup e-mail field

var DEF_VAL = "Your E-Mail..."; // Default Value

$(document).ready(
	function() {
	
		var mailing_list_email = document.getElementById("mailing_list_email");
		
		if (mailing_list_email) {
			if (mailing_list_email.value == '') {
				mailing_list_email.value = DEF_VAL;
			}
		}
		
		$("#mailing_list_email").focus(
			function() {
				$("#mailing_list_email").attr("value","");
			}
		);
		
		$("#mailing_list_email").blur(
			function() {
				if (mailing_list_email.value == '') {
					$("#mailing_list_email").attr("value",DEF_VAL);
				}
			}
		);
		
		$("#hear_about_us").change(
			function() {
				//alert($("#hear_about_us").val());
				if ($("#hear_about_us").val() == 'Online') {
					$("#specify_hear_about_us_label").text("Please specify website: *");
				} else if ($("#hear_about_us").val() == 'Magazine/Newspaper') {
					$("#specify_hear_about_us_label").text("Please specify which magazine/newspaper: *");
				} else if ($("#hear_about_us").val() == 'Poster/Flyer') {
					$("#specify_hear_about_us_label").text("Please specify where you saw the poster/flyer: *");
				} else if ($("#hear_about_us").val() == 'E-mail from the festival') {
					$("#specify_hear_about_us_label").text("Please specify whether by regular e-mail or Facebook mail: *");
				} else if ($("#hear_about_us").val() == 'Member of Festival Staff') {
					$("#specify_hear_about_us_label").text("Please specify staff member: *");
				} else if ($("#hear_about_us").val() == 'Friend') {
					$("#specify_hear_about_us_label").text("Please specify whether by: e-mail, instant message, or in person: *");
				} else if ($("#hear_about_us").val() == 'Special Event') {
					$("#specify_hear_about_us_label").text("Please specify which special event: *");
				} else if ($("#hear_about_us").val() == 'Movie Screening') {
					$("#specify_hear_about_us_label").text("Please specify which movie screening: *");
				} else if ($("#hear_about_us").val() == 'TV/Radio Station') {
					$("#specify_hear_about_us_label").text("Please specify which TV/Radio Station: *");
				} else if ($("#hear_about_us").val() == 'Other') {
					$("#specify_hear_about_us_label").text("Please specify: *");
				}
			}
		);		
			
	}
)

// END functions for wiping mailing list signup e-mail field
//

function fbs_click() {
	u=location.href;
	t=document.title;
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
	return false;
}