$(document).ready(function() {
	$("#slider").cycle();
	$("#slider").click(function() { window.location = $("#featured h1 a").attr("href"); return false; }).css("cursor","pointer	");
	$('a[rel="external"]').attr('target','_blank');
	$.localScroll();	
	$("ul", "#navigation").superfish({delay: 200, speed: 'fast'});
	$('ul.spy').simpleSpy();
	$('a.zoom').fancybox();
	$(".map_zoom").fancybox( { 'hideOnContentClick': false, 'frameWidth': 755, 'frameHeight': 455 });
	$('#sidebar').scrollFollow();
	$("#form-wrap form").validate({
	    rules: {
	        name: "required",
	        email: {
	            required: true,
	            email: true
	        }
	    },
	    errorPlacement: function (error, element) {},
	    highlight: function (element, errorClass) {
	        $(element).css({
	            'border': '2px solid red'
	        })
	    },
	    submitHandler: function (form) {
	        $(form).ajaxSubmit({
	            success: function () {
	                $('#form-wrap').html("<div id='replace' style='padding-top:10px;'></div>");
	                $('#replace').html("<p>Thank you for contacting us! We'll get back to you as soon as we can.</p><p style='font-style: italic;'>Please allow us three to five business days to respond.</p>").hide().fadeIn('1500');
	            }
	        });
	    }
	});
});
