feature_products = {
	
	show : function() {
		$("#product_hover").stop();
		feature_products.hide();
		
		if(feature_products.Current >= feature_products.numItems)
			feature_products.Current = 1
		
		//Set the active opacity
		$(".menuitem").animate({"opacity":"0.65"},150);
		$("#folio"+feature_products.Current+" a").animate({"opacity":"1"},150);
		
		//Move the slider
		pos = (feature_products.Current-1) * 74;
		$("#product_hover").animate({"marginLeft": pos+"px"});
		$("#stage"+feature_products.Current).fadeIn(250)
		feature_products.Current++;
	},
	
	showId : function(id){
		feature_products.Current = id;
		feature_products.stop();
		feature_products.show();
	},
	
	hide : function () {
		$(".feature_stage_item").fadeOut(250);
	},

	start : function() {
		feature_products.Interval = setInterval(feature_products.show, 6500);
	},
	
	stop : function() {
		clearInterval(feature_products.Interval);
	}
}
