///////////////////////////////Section : HOME //////////////////////////////////
$(function(){

			$('#slider').anythingSlider({
				width           : 483,   // Override the default CSS width
				height           : 382,   // Override the default CSS height
				theme           : 'none',
				easing          : 'easeInOutExpo',
				animationTime       : 300,
				autoPlay            : true,
				autoPlayLocked      : false,
				delay               : 34000,
				resumeDelay         : 500,
				resumeOnVideoEnd    : true,
				buildArrows         : false,
				buildNavigation     : false,
				resizeContents      : false    // If true, solitary images/objects in the panel will expand to fit the viewport
				
			});

			// set up external links
			$('#externalNav a').click(function(){
//alert(2);
    			var slide = $(this).attr('data-slide');
    			$('#slider').anythingSlider(slide);
//alert(slide);
    			return false;
			});
		});



///////////////////////////////Section : FAQ //////////////////////////////////

$(function(){
	$('.fabric-nav').show();
});



$(function(){
       $('#faq dd').hide();
       $('#faq dt a').click(function(){
               $('#faq dd').slideUp();
               $(this).parent().next().slideDown();
               return false;
       });
       
       $('#faq .button').click(function(){
       		$('#faq dd').slideUp();
       });
});


///////////////////////////////Section : Product Slider //////////////////////////////////

function setdesc(id) {
	//alert(id);
	id = id.slice(0,id.lastIndexOf('-btn'))+'-text';
	$('.slider-woolite .text-box').each(function() {
		var x = $(this);
		if (x.attr('id') != id)
			x.fadeOut();
//alert(x.attr('id')+':'+id)
	});
	$('#'+id).fadeIn();
}

// wait till EVERYTHING loads first, this won't work if the images are not loaded!
$(window).load(function() {
	$('#product-slider').roundabout({
		easing: 'easeOutExpo',
		minScale: 0.6,
		maxScale: 1.1,
		minOpacity: 1.0,
		btnNext: '#next',
		btnPrev: '#prev',
		duration: 800
	});
	if (!$.browser.msie)
		$('#product-slider').animate({'opacity': 1}, 150);
});

$(function() {

	if (!$.browser.msie)
		$('#product-slider').css({'opacity': '0'});

	$('#prod-03-text').hide();
	$('#prod-02-text').hide();
	
	$('#prod-02-btn').click(function(){
		$('#prod-02-text').fadeIn();
		$('#prod-03-text').fadeOut();
		$('#prod-01-text').fadeOut();
	});
	
	$('#prod-03-btn').click(function(){
		$('#prod-03-text').fadeIn();
		$('#prod-02-text').fadeOut();
		$('#prod-01-text').fadeOut();
	});
	
	$('#prod-01-btn').click(function(){
		$('#prod-01-text').fadeIn();
		$('#prod-03-text').fadeOut();
		$('#prod-02-text').fadeOut();
	});

	$('.controls a').click(function(){
		setTimeout("setdesc($('.roundabout-in-focus img').attr('id'));", 900);
		//var id = $('.roundabout-in-focus').attr('id');
	});


});



