//<![CDATA[

var time;
var time2;
var banner_sel_id; 

$(document).ready(function(){

	banner_sel_id = 0;
	
	$("a.botonMenu").click(function(){
		clearInterval(time);
		clearInterval(time2);
		time2 = setTimeout('setTimer()', 10000);
		changeBanner($(this).attr("href"));
		return false;
	});
	
	changeBanner(0);
	setTimer();
});

function setTimer()
{
	time = setInterval('changeBanner(banner_sel_id + 1)', 7000);
}

function changeBanner(id)
{
	
	if(id > 2)
	{
		id = 0;
	}
	
	$("#boton_" + banner_sel_id).attr("class","");
	$(".selected").removeClass("selected"); 
	$("#cabecera_image").fadeOut(150,function(){ 
		$("#cabecera_image").css('background-Image','url('+imagenesFlash[id]+')');
		$("#cabecera_image").fadeIn(400);
		$("#botonMenu_" + id).addClass("selected"); 
	});

	banner_sel_id = parseInt(id); 
}
//]]>
