/*
	Website scripts
	(c) Kerve Creative
*/

function validateContactForm() {
	var errormessage = 'Please ensure that you have completed the following:\n';
	var filter  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	
	if(
		(document.contact_form.mlist_firstname.value != '') &&
		(document.contact_form.mlist_lastname.value != '') &&
		(document.contact_form.mlist_email.value != '') &&
		(filter.test(document.contact_form.mlist_email.value))
	) {
		document.contact_form.submit();
	} else {
		if(document.contact_form.mlist_firstname.value == '') {
			errormessage += "  > Your firstname\n";
		}
		if(document.contact_form.mlist_lastname.value == '') {
			errormessage += "  > Your lastname\n";
		}
		if(document.contact_form.mlist_email.value == '') {
			errormessage += "  > Your email address\n";
		} else {
			if((filter.test(document.contact_form.mlist_email.value)) == false) {
				errormessage += "  > You must enter a valid email address\n";
			}
		}
		
		alert(errormessage);
	}
}

$(document).ready(function(){
	$('#brand_1 .content .content_drop').hide();
	$("#brand_1 .content").hover(function(){
		$('#brand_1 .content .content_drop').stop(false,true).slideDown(200, 'easeInOutQuad');
	}, function(){
		$('#brand_1 .content .content_drop').stop(false,true).slideUp(200, 'easeInOutQuad');
	});
	
	$('#brand_2 .content .content_drop').hide();
	$("#brand_2 .content").hover(function(){
		$('#brand_2 .content .content_drop').stop(false,true).slideDown(200, 'easeInOutQuad');
	}, function(){
		$('#brand_2 .content .content_drop').stop(false,true).slideUp(200, 'easeInOutQuad');
	});
	
	$('#brand_3 .content .content_drop').hide();
	$("#brand_3 .content").hover(function(){
		$('#brand_3 .content .content_drop').stop(false,true).slideDown(200, 'easeInOutQuad');
	}, function(){
		$('#brand_3 .content .content_drop').stop(false,true).slideUp(200, 'easeInOutQuad');
	});
	
	$('#brand_4 .content .content_drop').hide();
	$("#brand_4 .content").hover(function(){
		$('#brand_4 .content .content_drop').stop(false,true).slideDown(200, 'easeInOutQuad');
	}, function(){
		$('#brand_4 .content .content_drop').stop(false,true).slideUp(200, 'easeInOutQuad');
	});
	
	$('#brand_5 .content .content_drop').hide();
	$("#brand_5 .content").hover(function(){
		$('#brand_5 .content .content_drop').stop(false,true).slideDown(200, 'easeInOutQuad');
	}, function(){
		$('#brand_5 .content .content_drop').stop(false,true).slideUp(200, 'easeInOutQuad');
	});
	
	$('#brand_6 .content .content_drop').hide();
	$("#brand_6 .content").hover(function(){
		$('#brand_6 .content .content_drop').stop(false,true).slideDown(200, 'easeInOutQuad');
	}, function(){
		$('#brand_6 .content .content_drop').stop(false,true).slideUp(200, 'easeInOutQuad');
	});
});
