$(function () {


    //   $('div#bnrContainer').innerfade({ speed: 'slow', timeout: 5000, type: 'sequence' });

    //Cufon.replace('div.MainMenu ul li a span');

    $("a[rel^='prettyPhoto']").prettyPhoto({ showTitle: false });


//       $("table.cart tr td:even").addClass("alternate");
    $("table.cart tr td:nth-child(3)").addClass("alternate");
    $("table.cart tr td:nth-child(5)").addClass("alternate");


    $('div.header-shoppingCart-icon').click(function () {
        location = "/ShoppingCart.aspx";
    });


    $("a.Button").each(function (index) {
        $(this).html("<span>" + $(this).text() + "</span>");
    });


    $('div.BelMij input').Watermark("Telefoonnummer");
    $('div.Nieuwsbrief input').Watermark("E-mailadres");


    SlideImages($("div.ImageSlider_Items"));


});


function SlideImages(el) {

    el.animate({ left: "0px" }, 1, "linear", function () {
        el.animate({ left: "-713px" }, 15000, "linear", function () {
            SlideImages(el);
        });
    });
}

