/**
 * @author [Cassette]
 * @copyright [2011]
 * Software on this site is copyright 2011
 * Cassette Pty Ltd.
 * All Rights Reserved. Copying, Editing or
 * Distributing this software is strictly
 * forbidden without permission from
 * Cassette Pty Ltd.
 * for more information please contact
 * Cassette www.cassette.co
 */

$(document).ready(function() {
	
	// activate the carousel
	
	$(".bx-slider ul").each(function() {
		$(this).bxSlider({
			infiniteLoop: true,
			hideControlOnEnd: false,
			displaySlideQty: 1,
			moveSlideQty: 1,
			speed: 1000,
			easing: 'easeInOutCirc',
			auto: true,
			pager: true,
			pause: 6000,
			prevSelector: $(this).next(".bx-controls"),
			nextSelector: $(this).next(".bx-controls"),
			pagerSelector: $(this).next(".bx-controls").find(".bx-pager"),
			nextImage: site_url + "skins/pea/customer/images/home/arrow_right.png",
			prevImage: site_url + "skins/pea/customer/images/home/arrow_left.png"
		});
		
		$(this).parents(".bx-wrapper").append($(this).parents(".bx-wrapper").next());
		$(this).parents(".bx-wrapper").find(".bx-pager > a:first").addClass("first");
		$(this).parents(".bx-wrapper").find(".bx-pager > a:last").addClass("last");
	});
	
});
