var request = new Object();
var query;

$(document).ready(function() {
    try {
        query = decodeURI(location.search);
        query.replace(new RegExp("([^?=&]+)(=([^&]*))?", "g"), function($0, $1, $2, $3) { request[$1] = $3; });

    }
    catch (e) {
    }



    $("h3.error").click(function() {
        $(this).next().show();
    });

    //remove li empty
    $(".menuVF ul li").each(function(){
		if(jQuery.trim($(this).text())=="")
			$(this).remove();
	});

            $("div.wrapper:not(:has(div.box-body))").each(function (index) {
                $(this).toggle();
            });
    
});

