// JavaScript Document
$(document).ready(function(){
//	setInterval(diArgo, 5000);
	//total=rotador.length;
	actual=0;
	ultimoBanner=null;
//	var i = setInterval(nextBanner, 5000);
$('.titular').hover(
			function ()
			{
				$(".texto",this).css('color','#222222');
			}
			, function ()
			{
				$(".texto",this).css('color','#444444');
			}
);
    $(".titular").click(function () { 
		document.location.href=$('.titulo a',this).attr("href");
    });

    $(".igal").each( function(i){
 		$(this).jqGalScroll({height:180,width:269,direction : 'horizontal' });

	});	
       
 		$('a[href=index.php]','#menuCentral').addClass('actual');


});


function nextBanner(){
	actual++;
	if (actual==total) actual=0;
	$('.titulo',"#rotador").html('<a href=\"' + rotador[actual][3] + '\">' + rotador[actual][0] + '</a>');
	$('.texto',"#rotador").html( rotador[actual][1] );
	$('img',"#rotador").attr( 'src',rotador[actual][2] );
    $("#rotador").click(function () { 
		document.location.href=$('.titulo a',this).attr("href");
	  //$(this).slideUp(); 
    });
	
}

function nextRotador(){
	
}
