$(document).ready(function () {
   $(".temporary, .g").click(function () {
    
     $( "#modal" ).dialog({
                            height: 150,
                            width: 634,
                            modal: true,
                            });
                    });

    //remplazamos la fuentes
    Cufon.replace('h1', {
        textShadow: '-1px -1px rgba(0, 0, 0, 0.2)'
    });
    //fix for sidebar
    $(".contentback").onImagesLoad({
        selectorCallback: function () {

            //  $(".leftshadow").delay(500).css({ 'height': $("#layer").height() });
        } 
    })


    $("#chambres").wrap('<div class="minislide" />')
    $(".minislide").append("<div class='slide1 sl'><a class='uno ' href='../../Content/themes/hds/images/DSC_5128.jpg' ></a><a class='uno' href='../../Content/themes/hds/images/CIMG2012.JPG' ><a class='uno' href='../../Content/themes/hds/images/CIMG2035.JPG' ></a></div><div  class='slide2 sl'><a class='uno ' href='../../Content/themes/hds/images/DSC_5128.jpg' ></a><a class='uno' href='../../Content/themes/hds/images/CIMG2012.JPG' ><a class='uno' href='../../Content/themes/hds/images/CIMG2033.JPG' ></a></div><div  class='slide3 sl'><a class='uno ' href='../../Content/themes/hds/images/CIMG2030.JPG' ></a><a class='uno' href='../../Content/themes/hds/images/CIMG2012.JPG' ><a class='uno' href='../../Content/themes/hds/images/CIMG2001.JPG' ></a></div>")
    $("#chambres").find("div:first").addClass("selected");
     $(".uno").fancybox();
    $("#chambres").find("div").eq(0).click(function () {
        var t = $(this);
        $(".selected").removeClass("selected")
        t.addClass("selected")
        $(".minislide").find(".sl:visible").hide("slide", { direction: "up" }, 500, function () {
            $(".slide1").show("slide", { direction: "up" }, 500);

           

        });
    });

    $("#chambres").find("div").eq(1).click(function () {
        var t = $(this);
        $(" .selected").removeClass("selected")
        t.addClass("selected")
        $(".minislide").find(".sl:visible").hide("slide", { direction: "up" }, 500, function () {
            $(".slide2").show("slide", { direction: "up" }, 500);

        });
    });

    $("#chambres").find("div").eq(2).click(function () {
        var t = $(this);
        $(".selected").removeClass("selected")
        t.addClass("selected")
        $(".minislide").find(".sl:visible").hide("slide", { direction: "up" }, 500, function () {
            $(".slide3").show("slide", { direction: "up" }, 500);

        });
    });
})

