jQuery(function() {
	jQuery("body").addClass("jsEnabled");
	
	//Slideshow setup 
	jQuery("#images").cycle({
		fx: 'fade',
		timeout: 2500
	});
	
	//Open PDFs in a different window
	jQuery('a').each(function(){
		if( jQuery(this).attr('href') != "" ) {
			var href = jQuery(this).attr('href');
			if(href.indexOf('.pdf') != -1){
				jQuery(this).attr("target", "_blank");
			}
		} else {
			return false;
		}
	});
	
}); 
