﻿/// <reference path="jQuery/jquery-1.4.1.min-vsdoc.js" />
/// <reference path="jQuery/jquery.himle.slides.js" />
/// <reference path="jQuery/tojson.js" />
/// <reference path="jQuery/jquery.stylish-select.js" />

$(function() {
    $("#ImageStartSlide").Slides({
                images: ['/Content/Images/Design/StartImageSlide/2011/feb/img_2_stor.jpg',
               '/Content/Images/Design/StartImageSlide/2011/feb/img_3_stor.jpg',
               '/Content/Images/Design/StartImageSlide/2011/feb/img_4_stor.jpg',
               '/Content/Images/Design/StartImageSlide/2011/feb/img_5_stor.jpg',
               '/Content/Images/Design/StartImageSlide/2011/feb/img_6_stor.jpg',
               '/Content/Images/Design/StartImageSlide/2011/feb/img_1_stor.jpg'],
        pause: 7000,
        fade: 3000
    });
    $(".CategoryDropDown").sSelect({ ddMaxHeight: '300px' });

    $(".btnShowProducts").click(function() {
        var src = $(".CategoryDropDown").val();

        window.location = "/Vart_sortiment/" + src;
    });
});

