$(document).ready(
	function() {

		//SET THE WIDTH OF THE SLIDING CONTAINER
		var widthOf_picContainer = $("#picContainer a").size();
		widthOf_picContainer = widthOf_picContainer * 213;
		$("#picContainer").css("width",widthOf_picContainer);

		//PERFORM THE SLIDE EVERY 3 SECONDS
		slideThePics($("#picContainer a").size(),1);

		//INIT THE TIPSY FOR THE FEATURED PRODS
		//$('.tipsyFeaturedProducts').tipsy({gravity: 'e'});
		$('.tipsyFeaturedProducts').tooltip();

	}
);

function slideThePics(howManyPics,howManyMoves) {

	if (howManyPics != howManyMoves) {
		$("#picContainer").fadeTo(5000, 1,
			function() {
				$("#picContainer").animate({left: $("#picContainer").css("left").replace("px","") - 213}, 1500,
					function(){
						slideThePics(howManyPics,howManyMoves+1);
					}
				);
			}
		);
	} else {
		$("#picContainer").fadeTo(5000, 1,
			function() {
				$("#picContainer").animate({left: 0}, 1500,
					function(){
						slideThePics(howManyPics,1);
					}
				);
			}
		);
	}
}