/* No need to change anything after this */function in_array (needle, haystack, argStrict) {    var key = '',        strict = !! argStrict;    if (strict) {        for (key in haystack) {            if (haystack[key] === needle) {                return true;            }        }    } else {        for (key in haystack) {            if (haystack[key] == needle) {                return true;            }        }    }    return false;}/** * Open a simple popup *  * @param url * @param window_name * @param width * @param height * @return */function new_popup(url, window_name, width, height){	window.open(url,window_name,'width=' + width + 'px,height=' + height + 'px,scrollbars=1');}$(function(){
    $("ul.b-dropdown_menu li").hover(        function()    {    	$(this).addClass("hover");
        $('ul:first',this).css('display', 'block');
    },     function()    {
        $(this).removeClass("hover");
        $('ul:first',this).css('display', 'none');
    });    $('input[title!=""]').hint();
});
