// JavaScript Document
jQuery(document).ready(function($) {
	
	FLIR.init({ path: '/wp-content/themes/peacefest/facelift/' });
	$("h1").each( function() { FLIR.replace(this); } );
	$("h2,h3,h4,h5,h6,.wp-caption-text").each( function() { FLIR.replace(this, new FLIRStyle({ cFont: 'chester' })); } );

	$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	$('#Sponsors').cycle({ 
		fx: 'fade',
		timeout: 5000,
		sync: 0,
		delay: 1000,
		speed: 3000		
	});	
	
	//OPEN EXTERNAL LINKS IN NEW WINDOW
	//$('a:not([@href*=peacefest.com])').click(function() { window.open(this); return false; });
});