/**
 * @author Chris Kew
 * @created 08/12/09
 */
jump = {
	init : function() {
		var theForm = document.forms[0];
		for(var i = 0; i < theForm.elements.length; i++) {
			DOMhelp.addEvent(theForm.elements[i], "change", jump.redirect, false);	
		}
	},			
	redirect : function(e) {
		var theSelect = DOMhelp.getTarget(e);
		//alert(theSelect.options.length);
		//alert(theSelect.options[theSelect.selectedIndex].value);
		window.location.href = theSelect.options[theSelect.selectedIndex].value;
		document.forms[0].reset();
		DOMhelp.cancelClick(e);
		DOMhelp.safariClickFix;
	}
}
DOMhelp.addEvent(window, "load", jump.init, false);

