	$(document).ready(function(){init_load();});
	
	function init_load()
	{
		init_search_button();
		init_openwin();
	}
	
	function init_search_button()
	{
		var myButton  = document.getElementById("gobutton");
		myButton.onmouseover = search_button_over; 
		myButton.onmouseout = search_button_out;
		
		function search_button_over()
		{
			this.src = "/images/go_button_over.jpg";
		}
		
		function search_button_out()
		{
			this.src = "/images/go_button.jpg";
		}
	}
	
	function openwin(url,width,height)
	{
	thewindow = window.open(url, 'anew', config='height='+height+',width='+width+',toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,directories=no,status=yes');
	thewindow.focus();
	}

