    
	$(document).ready(function () {
	
		$('.anythingSlider').anythingSlider({
			easing: "easeInOutExpo",        // Anything other than "linear" or "swing" requires the easing plugin
			autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not.
			delay: 3000,                    // How long between slide transitions in AutoPlay mode
			startStopped: false,            // If autoPlay is on, this can force it to start stopped
			animationTime: 600,             // How long the slide transition takes
			hashTags: true,                 // Should links change the hashtag in the URL?
			buildNavigation: true,          // If true, builds and list of anchor links to link to each slide
			pauseOnHover: true,             // If true, and autoPlay is enabled, the show will pause on hover
			startText: "Play",             // Start text
			stopText: "Stop"               // Stop text
		});
		
		
		$('#newsletter-form').validate();

		$('#clear_btn').click(function() {
			document.getElementById('contacts-form').reset();
		});

		$('#submit_btn').click(function() {
			
			var cname = document.getElementById('contact_name').value;
			var cemail = document.getElementById('contact_email').value;
			var cmessage = document.getElementById('contact_message').value;
			var msg = "";
			
			if (typeof(cname) == "undefined" || cname == "Name:" || cname == "") {
				msg = "Name is missing. Enter valid name.";
			} else if ((typeof(cemail) == "undefined") || cemail == "E-mail:" || cemail == "" || !validateEmailAddress(cemail)) {
				msg = "Enter a valid email address.";
			} else if ((typeof(cmessage) == "undefined") || cmessage == "Message:" || cmessage == "") {
				msg = "Message is mandatory. Please enter the message.";
			} else {
				document.getElementById('contacts-form').submit();
				return;
			}

			var data = '<div id="submitresponse"><p>'+ msg + '</p><p><a class="button" id="continue">Continue</a></p></div>';
			
			$.fancybox(data, {
				'autoScale' : true,
				'centerOnScroll' : true,
				'hideOnContentClick' : true
			});
		});

	});

	function formatText(index, panel) {
		return index + "";
	}
	
	function showZone(zoneid) {
		$.fancybox.showActivity();
		
		$.ajax({
			url: 'editzone.php',
			type: 'POST',
			data: 'zoneid=' + zoneid,
			success: function(data)
				{
					$.fancybox(data, {
						'autoScale' : true,
						'centerOnScroll' : true
					});	
				}
		});
	}
	
	function validateEmailAddress(value) {
		return /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(value);
	}

