/* ---------------------------- 
[Global javascript]

Project: 	Susan Komen Photo Gallery
Version:	1.0
Last change:	09/23/08 [app created, lg]
Assigned to:	Lonnie Griffin [lg]
Primary use:	Web
------------------------------- */

/* ---------------------------- */
/* Cursor placement on login page
/* ---------------------------- */

$(document).ready(function() {
	$("#userLogin").focus();
});

/* ---------------------------- */
/* Select menus
/* ---------------------------- */

function gotoURL(selObj,restore){
  eval("location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


