ligas_1 = new Array("burberry","carolina","ermenegildo","louis_vuiton","maxmara","paulshark","pinedacovalin");
ligas_2 = new Array("purificacionongarcia","salvatore","vilebrequin","wolford","coach","fendi","longchmap","lesbore");
ligas_3 = new Array("swarovski","swatch","tous","cartier","chopand","danielespinosa","montblanc","pinedacovalin");

$(document).ready(function(){

$(".myrollover").hover(
 function()
 {

  this.src = this.src.replace("_off","_on");
 },
 function()
 {
  this.src = this.src.replace("_on","_off");
 }
);

$(".logorollover").hover(
 function()
 {
  this.src = this.src.replace("_off","_on");
 },
 function()
 {
  this.src = this.src.replace("_on","_off");
 }
);


var anterior_f=1;


$("#slider2").easySlider({
        auto: true,
        controlsShow: false,
        speed: 9000,
        pause: 3000,
        continuous: true
    });

$(".destinoimg").click(function()
 {
      $("#imgboutique").fadeOut("slow").fadeIn("slow").attr("src","/images/imagenes_boutiques/"+$(this).attr("title"));
      $(".destinoimg").css("color","#666");
      $(this).css("color","#e5297e");


 });

    $(".div_enlace").click(function()
    {
    $(".div_ligas").hide();
    $("#div_"+$(this).attr("title")).fadeIn("slow");

    });


});