function cambiaIdioma(lang){
    $.post("sitio/ajax/idioma.php", {lang: lang}, function(data){
        if(data==1){
            window.location.reload();
        }
    })
}

$(document).ready(function(){
    var base = $("base").attr("href");   

 //SCROLLABLE
    $("#browsable").scrollable({circular: true}).navigator().autoscroll({ autoplay: false, interval: 5000 });


//LAVALAMP
    $('#nav').lavaLamp({
	fx: 'easeOutExpo',
	speed: 800
	
});

//FOCUS
    $("form input,form textarea")
        .focus(function(){
                if($(this).val() == $(this).attr("title")){$(this).val("")}
        })
        .blur(function(){
                if($(this).val() == ""){$(this).val($(this).attr("title"))}
    });

//CYCLE
    $('#cycle').cycle({
        fx:     'fade',
        speed:  500,
        timeout: 5000,
        slideExpr: 'a.enlaces',
        pager:  '.controlNav',
		pagerAnchorBuilder: function(idx, slide) {
            // return selector string for existing anchor 
            return '.controlNav a:eq(' + idx + ')'; 
        }	
    });
    

//CAMBIA IDIOMA
    $('div.lenguajes ul li a').click(function(){
        var lang= $(this).attr('href');
        cambiaIdioma(lang);
        return false;
    })


////FANCYBOX
    $("a.zoom").fancybox({
        'onComplete'    : function() {$("#fancybox-wrap").unbind('mousewheel.fb');} ,
        'transitionIn'  : 'elastic',
        'transitionOut' : 'elastic',
        'zoomSpeedIn'   : 500,
        'zoomSpeedOut'  : 500,
        'overlayShow'   : false,
        'width'         : 1000,
        'height'        : 600
    });

//SCROLL
   // $('.scroll').jScrollPane({showArrows: true});
});// Cierro document ready
