//MENU ROLLOVER
if (document.images) {
nav1on   = new Image(); nav1on.src   = "_images/menu_homeon.jpg";
nav1off  = new Image(); nav1off.src  = "_images/menu_home.jpg";
nav2on   = new Image(); nav2on.src   = "_images/menu_synopsison.jpg";
nav2off  = new Image(); nav2off.src  = "_images/menu_synopsis.jpg";
nav3on   = new Image(); nav3on.src   = "_images/menu_blogon.jpg";
nav3off  = new Image(); nav3off.src  = "_images/menu_blog.jpg";
nav4on   = new Image(); nav4on.src   = "_images/menu_videoson.jpg";
nav4off  = new Image(); nav4off.src  = "_images/menu_videos.jpg";
nav5on   = new Image(); nav5on.src   = "_images/menu_photoson.jpg";
nav5off  = new Image(); nav5off.src  = "_images/menu_photos.jpg";
nav6on   = new Image(); nav6on.src   = "_images/menu_signupon.jpg";
nav6off  = new Image(); nav6off.src  = "_images/menu_signup.jpg";
nav7on   = new Image(); nav7on.src   = "_images/menu_shareon.jpg";
nav7off  = new Image(); nav7off.src  = "_images/menu_share.jpg";
}

function rollOn(img){
    if (document.images) {
        document[img].src=eval(img + "on.src");
    }
}

function rollOff(img){
    if (document.images) {
		document[img].src=eval(img + "off.src");
	}
}

//CLEAR FIELDfunction clearIt(field) {
if (field.value == "Email Address") {field.value="";
}}

// CHECK REGISTRATION
function EmailCheck(form) {
valcheck = form.email;hasDot = valcheck.value.indexOf(".");hasAt = valcheck.value.indexOf("@");if (hasDot == -1 || hasAt == -1) {	alert("Please enter your Email Address.");	valcheck.focus();	return false;
} else {
return true;
}
}


// CHECK REGISTRATION
function SignupCheck(form) {
valcheck = form.email;hasDot = valcheck.value.indexOf(".");hasAt = valcheck.value.indexOf("@");if (hasDot == -1 || hasAt == -1) {	alert("Please enter your Email Address.");	valcheck.focus();	return false;}//First Name Checkvalcheck = document.getElementById("CustomFields_1_35");if (valcheck.value == "" || valcheck.length < 2) {	alert("Please enter your First Name");	valcheck.focus();	return false;}//Last Name Check			valcheck = document.getElementById("CustomFields_2_35");if (valcheck.value == "" || valcheck.length < 2) {	alert("Please enter your Last Name");	valcheck.focus();	return false;} //State Check			valcheck = document.getElementById("CustomFields_13_35");if(valcheck.selectedIndex == -1 || valcheck.value == "") {	alert("Please enter your State");	valcheck.focus();	return false;}//Zip Check	valcheck = document.getElementById("CustomFields_3_35");if (valcheck.value == "" || valcheck.length < 2) {	alert("Please enter your Zip Code");	valcheck.focus();	return false;}
 else {	return true;}}
