document.documentElement.className += ' js';

(function($){

	$('#slideshow').cycle({
		 fx: 'fade' 
	});
	
	//fancybox
	$("#map-link").fancybox({
    	'overlayShow': false
    });

    //open external links in a new window
    var hostname = window.location.hostname;
    hostname = hostname.replace("www.", "").toLowerCase();
    
    $('a').each(function(){
        if (this.href.indexOf("http://") != -1 && this.href.indexOf(hostname) == -1) {
            this.target = "_blank";
            this.className += " external";
        }
    });
    
    //add class text to text form elements
	$('input:text').addClass('text');
    
	//validate forms
	$('form').validate({
		errorClass: "invalid",
		validClass: "valid"
	});
	
})(jQuery);
