// Indypacecars.com gallery jump menu

function GoTo() {
	var target = document.jumpmenu.decade.options[document.jumpmenu.decade.selectedIndex].value;
	if (target != "") {
		window.location = target;
	} else {
		alert("Please choose a year")
	}
}

// Add new pages below as they are created.  Make sure the decade list matches the page list!
var pagelist = new Array('the00s.html','the90s.html','the80s.html','the70s.html','the60s.html');
var decadelist = new Array('2000-2009','1990-1999','1980-1989','1970-1979','1960-1969');
var curpage = location.pathname.substring(location.pathname.lastIndexOf('/')+1);

document.write('<form name="jumpmenu" style="margin:0">');
document.write('<font face="Arial" size="2">Jump to another decade:</font><br>');
document.write('<select name="decade" size="1">');
for (var i=0; i<pagelist.length; i++) {
	var selectitem = '<option value="' + pagelist[i] + '"';
	if (pagelist[i] == curpage) {
		selectitem += ' selected="selected"';
		}
	selectitem += '>' + decadelist[i] + '</option>';
	document.write(selectitem);
	}
	

document.write('</select>');

document.write('&nbsp;&nbsp;<input type="button" name="Submit" value="Go" onClick="GoTo(); return false">');
document.write('</form>');

