$(document).ready(function() {
    g_pageLoadComplete = true;  // hack to stop Please wait while scripts are loading message
    bindSearch();
});

var bindSearch = function()
{
	var placeholder = "Search";
	jQuery("#search_text").focus(function()
	{
		if (this.value == placeholder) this.value = "";
	}).blur(function()
	{
		if (this.value == "") this.value = placeholder;
})
};

function toggle(o) {
    var e = document.getElementById(o);
    e.style.display = (e.style.display == 'none') ? 'block' : 'none';
}
