/**
 * @author javier
 */

var current = 1;
var interval;
$(document).ready(function(){

	$("#slideshow img:first").fadeIn();
	interval = setInterval("slideShow()",6000);
	
	$("#slideshow img").each(
		function(i){
			if ($(this).attr("class")!='' && $(this).attr("class")!=undefined ) {
				$(this).css({cursor:'pointer'});
				$(this).click(
					function(){
						var targ = $(this).attr("class");
						location = '/?secc=tours&sub=' + targ;
					}
				);
			}
		}
	);

});


function slideShow(){
	var prev = current;
	current++;
	if (current > $("#slideshow img").length) current = 1;
	$("#pic_" + current).fadeIn( function(){
		$("#pic_" + prev).fadeOut();
	});
}



