
//START SPONSOR'S ROTATOR...
//Define Global vars for nextNews
i = 0;
time = 8000;
element = '.sponsor_rot .in';
var actNextPict;
//End Define Global vars for nextNews


function nextPict()
{
    var amount = $(element).length;
    if(amount > i+1)//amount > that number order (i+1) of .content
							{
									$(element).eq(i).fadeOut("slow");

                                    $(element).eq(i+1).fadeIn("slow");

									i++;
									clearTimeout(actNextPict);
							}
							else
							{
									$(element).eq(i).fadeOut("slow");

                                    $(element).eq(0).fadeIn("slow");
                                    
									i = 0;
									clearTimeout(actNextPict);
							}
   if(time != 0) actNextPict = setTimeout(nextPict,time);
}
//END SPONSORīS ROTATOR...




//START NOVEDADES'S ROTATOR...
//Define Global vars for nextNews
j = 0;
time = 8000;
novedades = '.nov_bg .text_info';
var actNextNews;
//End Define Global vars for nextNews


function nextNews()
{
    var amount = $(novedades).length;
    if(amount > j+1)//amount > that number order (i+1) of .content
							{
									$(novedades).eq(j).fadeOut("slow");

                                    $(novedades).eq(j+1).fadeIn("slow");

									j++;
									clearTimeout(actNextNews);
							}
							else
							{
									$(novedades).eq(j).fadeOut("slow");

                                    $(novedades).eq(0).fadeIn("slow");
                                    
									j = 0;
									clearTimeout(actNextNews);
							}
   if(time != 0) actNextNews = setTimeout(nextNews,time);
}
//END NOVEDADESīS ROTATOR...





$(document).ready(function() {
						   
	// efecto tipo accordion ...				   
	$(".content_prod .div_hover a.box_text_arrow").click(function(){
		
		if($(this).parent().siblings().children('.long_text').css('display') == 'none'){
			$(this).css('background','url(images/arrow_prod_open.jpg) no-repeat');
			$(this).parent().siblings().children('.long_text').slideDown('fast');
			$(this).parent().parent().siblings().children().children().children('.Ver_Mas_Red').css('display', 'block');      
			return false;
		} else {

			$(this).css('background','url(images/arrow_prod_closed.jpg) no-repeat');      
			$(this).parent().parent().siblings().children().children().children('.Ver_Mas_Red').css('display', 'none');      
			$(this).parent().siblings().children('.long_text').slideUp('normal');
				
		}
		
		return false;
				
	});
	
	
	
	/*$(".content_prod .div_hover").hover(function(){
						
    	$(this).children().children().children().children().children(".short_text").hide();
		$(this).children().children().children().children().children(".long_text").show();
		$(this).children().children().children().children().children(".box_text_arrow").css('background','url(images/arrow_prod_open.jpg) no-repeat');
		$(this).children().children().children().children().children().children(".Ver_Mas_Red").css('display','block');
      		
	},function(){
	  	  
  $(this).children().children().children().children().children(".long_text").hide();
		$(this).children().children().children().children().children(".short_text").show();
		$(this).children().children().children().children().children(".box_text_arrow").css('background','url(images/arrow_prod_closed.jpg) no-repeat');
		$(this).children().children().children().children().children().children(".Ver_Mas_Red").css('display','none');
	});*/
	
	
	
	//Novedadesīs rotation
	$(novedades).eq(0).css({display:"block"});

	if(time != 0)
	{
		actNextNews = setTimeout(nextNews,5000);
	}
	
	
	
	//Homeīs rotation
	$(element).eq(0).css({display:"block"});

	if(time != 0)
	{
		actNextPict = setTimeout(nextPict,8000);
	}
	
	
	
});