var rotator_time = 5; //Secconds

var rotator_items = 0;
var rotator_actual_item = 0;
function init_rotator(){
	jQuery(".rotator-items :first").show();
	/*jQuery(".rotator-thumb").click(function(){
		var id = jQuery(this).attr('id');
		var item_id = id.replace("-thumb","");
		jQuery('.rotator-item').hide();
		jQuery('#'+item_id).fadeIn('slow');
	});*/

	rotator_items = jQuery('.rotator-item').length;

	setInterval(rotator_go_next, rotator_time*1000);
}
function rotator_go_next(){
	rotator_actual_item++;
	//alert(rotator_actual_item);
	if(rotator_actual_item >= jQuery('.rotator-item').length) {
		rotator_actual_item = 0;
		//alert('paso ' + rotator_actual_item + '--' + jQuery('.rotator-item').length)
	}
	jQuery('.rotator-item').hide();
	var item = jQuery('.rotator-item').get(rotator_actual_item);
	jQuery(item).fadeIn('slow');
}
jQuery(document).ready(function () {
	init_rotator();
});
