/**********************************************
				FEATURED SLIDES
**********************************************/

$(function() {
$(".featuredselect").tabs(".homefeatured > div", {

	// enable "cross-fading" effect
	effect: 'fade',
	fadeOutSpeed: "slow",
	next: '.for',
	prev: '.bac',

	// start from the beginning after the last tab
	rotate: true

// use the slideshow plugin. It accepts its own configuration
}).slideshow({
		autoplay: true,
		interval: 10000,
		clickable: false,
		autopause: true
	});
});




/**********************************************
				CUSTOMER BAR
**********************************************/

$(function() {

$(".slidetabs").tabs(".images > div", {

	// enable "cross-fading" effect
	effect: 'fade',
	fadeOutSpeed: "slow",
	
	// start from the beginning after the last tab
	rotate: true

 //use the slideshow plugin. It accepts its own configuration
}).slideshow({
		autoplay: true,
		interval: 5000,
		clickable: false,
		autopause: true
	});
});




/**********************************************
				OVERLAYS
**********************************************/

//make all links with the 'rel' attribute open overlays
$(function () {
	$("a[rel]").overlay({
		mask: {
			color: '#111',
			loadSpeed: 0,
			closeSpeed: 0,
			opacity: 0.7
		},
		top: '10%',
		speed: 0,
		closeSpeed: 0,
		onBeforeLoad: function() {
			// grab wrapper element inside content
			var wrap = this.getOverlay().find(".contentWrap");
			// load the page specified in the trigger
			wrap.load(this.getTrigger().attr("href"));
		}
	});
});

// Remove Video from DOM on Close for IE
$('.close').live('click', function() {
	$(".demo-overlay").remove();
});







