$(document).ready(function() {
	// check if we need our slider
	if($('#slider').length > 0) {
		$('#slider').bxSlider({
			'auto': true,
			'controls': false,
			'pause': 8000, 
			'randomStart': true
			});
	}
	
	// show sub menu
	$("ul#nav li.haschildren").hover(function(){
			$(this).addClass("hover");
			$('ul:first',this).css('visibility', 'visible');
    }, function(){
			$(this).removeClass("hover");
			$('ul:first',this).css('visibility', 'hidden');
    });
	
});

function clearBox(input) {
	if(input.value=input.defaultValue) {
		input.value = '';	
	}
}

function resetBox(input) {
	if(!input.value) {
		input.value = input.defaultValue;	
	}
}

function validateEmail(email){
	var myEmail = email.value;

	if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myEmail))){
		alert('Please enter a valid email address');
		return false;
	}

	return true;
}
