
var fadeShowArray = new Array();
fadeShowArray.push(["http://www.partychic.net/main/wp-content/themes/partychic/images/homePage1.jpg","",""]);
fadeShowArray.push(["http://www.partychic.net/main/wp-content/themes/partychic/images/homePage2.jpg","",""]);
fadeShowArray.push(["http://www.partychic.net/main/wp-content/themes/partychic/images/homePage3.jpg","",""]);
fadeShowArray.push(["http://www.partychic.net/main/wp-content/themes/partychic/images/homePage4.jpg","",""]);
fadeShowArray.push(["http://www.partychic.net/main/wp-content/themes/partychic/images/homePage5.jpg","",""]);


function checkForm(){
			formRef = document.contactForm;

			if ( formRef.lastName.value.length <  2 ){
				alert('Please enter your name in the "Name" field.');
				formRef.lastName.focus();
				return;
			}
			
			

			if ( formRef.fromemail.value.length <  2 ){
				alert('Please enter an email address in the "Email Address " field.');
				formRef.fromemail.focus();
				return;
			}


			formRef.submit();
		}

