$(document).ready(function() {
	$('ul#homephotos').innerfade({
		animationtype: 'fade',
		speed: 3000,
		timeout: 6000,
		type: 'random_start',
		containerheight: '446px'
	});
});


function checkEntries(thisForm)
{
	if (thisForm.e_email.value == "")
	{
		alert("Please enter your Email Address");
		thisForm.e_email.focus();
		thisForm.e_email.select();
		return false;
	}
return true;
}

