$(document).ready(function () {
   // $('ul.megamenu').megamenu();
  //  $('div.filter_block').corner('10px');
  //  $('div.rounded').corner("10px");

  //  $('div.News').corner("10px");

    // $('#div_bottom_menu').corner("10px");
    // $('#div_main_menu').corner("10px");
  //  $('div.post').corner("10px");

  //  $('div.roundedTop').corner("10px top");

//
//    $('div.div_rounded').corner("10px");

    $('#SearchDiv').mouseleave(function () {
        $("#SearchHelp:visible").hide();
        return false;
    });

    $("#Search").keyup(function () {
        var searchbox = $(this).val();
        var dataString = 'searchword=' + searchbox;
        if (searchbox == '') {
            $("#SearchHelp").hide();
            return false;
        }

        if (searchbox.length > 2) {
            $.ajax({ type: "POST", url: RootPath + "jax/search_help.aspx", data: dataString, cache: false, success: function (html) { $("#SearchHelp").html(html).show(); } });
        }
        else {
            $("#SearchHelp").hide();
        }
        return false;
    });

});


