﻿$(document).ready(function() {
    $("a.show-dialog").click(function(evt) {
        evt.preventDefault();
        $("<div>What do you want to search?</div>").dialog({
            resizable: false,
            modal: true,
            title: "Search What?",
            width: '500px',
            buttons: {
                'Vans': function() {
                    window.location.href = vansLink;
                },
                'Cars': function() {
                    window.location.href = carsLink;
                },
                'Bikes': function() {
                    window.location.href = bikesLink;
                }
            }
        });
    });

    $("a.toggle-search").click(function(evt) {
        evt.preventDefault();
        $("div.search").slideToggle("slow");
    });

    $("a.show-coming-soon").click(function(evt) {
        evt.preventDefault();
        $("<div>This is coming soon, Please check back again soon.</div>").dialog({
            resizable: false,
            modal: true,
            title: "Coming Soon?",
            width: '500px'
        });
    });

    if ($("ul.collapse-me").length) {
        $("div.search").delay(60000).slideUp("slow");
    }

    //TODO
    //$("ul.criteria").splitUL(2);
});
