﻿/// <reference path="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"/>
/// <reference path="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/jquery-ui.min.js"/>
/// <reference name="ePathLib.Scripts.ePath.js" assembly="ePathLib2011"/>


$(function () {
    $global.init();
});

var $global = (function () {
    var $this = {};

    $this.init = function () {
        $this.search.init();
    };


    //*********************************************************************************
    //                             Search
    //*********************************************************************************
    $this.search = (function () {
        var $this = {};
        var ibtnSearch, txtSearchKeywords;

        $this.init = function () {
            ibtnSearch = $(".ibtnSearch");
            txtSearchKeywords = $(".txtSearchKeywords");

            ibtnSearch.click(ibtnSearch_click);
        };

        function ibtnSearch_click() {
            location.href = $page.appPath + "search-results/?keywords=" + txtSearchKeywords.val();
            return false;
        }

        return $this;
    })();

    return $this;
})();
