// class swapping stuff
$(document).ready(function(){
	// first function = on mouse over, 2nd funtion when mouse moves off
	
	// copy this block and change ids (#) for as many times as you need to.
	$("input").hover(function(){
	  $("input").addClass("submit_hover_on");
	},function(){
	  $("input").removeClass("submit_hover_on");
	});
	// end copy
    /// 		$.ImageBox.init(
	///		{
	///			loaderSRC: '/includes/lightbox/loading2.gif',
	///			closeHTML: '<img src="/includes/lightbox/label-close.gif" border="0" />'
	///		}
	///		)
});

function jumppage(newloc) {
	newpage = newloc.options[newloc.selectedIndex].value;
	if (newpage != "") {
		window.location.href = newpage;
	}
	return null;
}