$(document).ready(function(){
     $('div#container').pngFix( )
     $(function() {
               $('#menu').droppy({speed: 100});
     });
})

function doCheckFieldSearch(objForm) {
	if (objForm.searchText.value == "") {
		alert("You must type a word or words separated by spaces to continue.");
		objForm.searchText.focus();
		return false;
	} else if (objForm.searchText.value.length < 3) {
		alert("Keywords must be at least 3 characters in length to be used on search.");
		objForm.searchText.focus();
		return false;
	} else {
		return true;
	}
}