$(document).ready(function () {
    $('ol#planning li').each(function (i) {
        $(this).css({ 'background-image': 'url(Images\/ol_' + (i + 1) + '\.png)' });
    });

    var pp_options = {
        animationSpeed: 'fast',
        opacity: 0,
        padding: 20,
        showTitle: false,
        counter_separator_label: ' of ',
        theme: 'light_square'
    }

    /* Lightbox */
    $("a[rel^='lightbox']").prettyPhoto(pp_options);

    /* Kitchens Dropdown */
    $("select#kitchens").change(function () {
        if ($(this).val() != "") {
            window.location.href = $(this).val();
        }
    });
});

