﻿$(function() {
    $("ul.LeftMenu li a").hover(function() {
        $(this).stop().animate({ backgroundColor: "#2A3A48", color: "#FFFFFF" }, 1000);
    }, function() {
        $(this).stop().animate({ backgroundColor: "#FFFFFF", color: "#94a2b1" }, 1000);
    });
    $("ul.menuLevel2 li a").hover(function() {
        $(this).stop().animate({ backgroundColor: "#87939D", color: "#FFFFFF" }, 1000);
    }, function() {
        $(this).stop().animate({ backgroundColor: "#FFFFFF", color: "#8794a2" }, 1000);
    });
    $('#txtSearch').keydown(function(event) {
        if (event.keyCode === 13) {
            search();
        }
    });
});

function search() {
    $.get('searchservice.aspx', { strSearch: $('#txtSearch').val() }, function(response) {
        $("div.MainArea").html(response);
    });
}