﻿var oldimg = null;
var oldtit = null;
$(document).ready(function () {

    $(".scrollable").scrollable({circular: true, mousewheel: true}).navigator();
    //   $(".scrollable").scrollable({ circular: true, mousewheel: true }).autoscroll({ interval: 5000 }).navigator();

    oldimg = $("#image_wrap").find("img").attr("src");
    oldtit = $("#image_wrap").find("img").attr("alt");
    $(".items img").mouseenter(function () {

        if ($(this).hasClass("active")) { return; }

        var url = $(this).attr("src").replace("th145", "");
        var tit = $(this).attr("alt");
        var wrap = $("#image_wrap");

        var img = new Image();
        //img.src = url;

        //img.onload = function () {
        wrap.find("img").attr("src", url);
        //};

        $(this).addClass("active");
    });
    $(".items img").mouseleave(function () {
        $(this).removeClass("active");
        $("#image_wrap").find("img").attr("src", oldimg);
        $("#image_wrap").find("img").attr("alt", oldtit);
    })

});


function doSearch(p) {
    var st = $("#searchtext").val();
    st = jQuery.trim(st);
    if (st.length < 3) {
        alert("введите слово длиной не меньше трех символов");
    }
    else {
        var url = "/"+p+"/" + encodeURI(st);
        window.location.href = url;
    }
}
