/*  jQUERY CUSTOM FUNCTION 
------------------------------------------------------------------------------------------------------------------------------------------- */
var $j = jQuery.noConflict();
jQuery(document).ready(function(j) {
	// External Links Open in New Windows
	$j("a[rel='external']").bind("click.external", function(){
		window.open(this.href);
		return false;
	});
	
	// Slides
	$j('#promo').slides({
		preload: false,
		preloadImage: 'wp-content/themes/scclaire/images/loading.gif',
		container:'slideshow',
		effect: 'fade',
		crossfade: true,
		fadeSpeed: 700,
		hoverPause:false,
		play:7000,
		pause:1000,
		generateNextPrev: false,
		generatePagination: false
	});
	
	// LavaLamp Menu
	$j("#menu-menu1").lavaLamp({
		fx: "easeOutBack",
		speed: 700
	});

});

