// jQuery enhanced menu
function MainMenu(){
	this.navLi = $('#nav li').children('ul').hide().end();

	$('#nav li li:has(ul)').append('<span class="hasChildren"></span>');
	
	this.navLi.hover(function() {
		// Mouse over
		$(this).find('> ul').stop(true, true).slideDown('slow', 'easeOutBounce');
		}, function() {
		// Mouse out
		$(this).find('> ul').stop(true, true).hide(); 		
	});
}



// On page load
$(document).ready(function() {
	// Contact form validation
	
	// Call the menu function
	MainMenu();
	

	// Activate image preloading
	$(".preloadImg").preloader();
});
