//RANTS DISPLAY CODE
document.write("<div id='rant_box'>Rants<br><form name='rant_selector_home'><select name='month'><option value='feb_09' selected='selected'>AIR TRAVEL</option><option value='jan_09'>LOW FAT FOODS</option><option value='jan_08'>LOGITECH MOUSE</option><option value='feb_08'>MASCOTS</option><option value='mar_08'>Rx DRUGS</option><option value='apr_08'>WIN VISTA</option><option value='may_08'>BLOGGER</option><option value='jun_08'>GOOD TV GONE</option><option value='sep_08'>NEW FACEBOOK</option></select><input type='button' name='go_button' value='>' onclick='goto_rant_home(); return false;'></form></div>");




//SELECTOR
function goto_rant_home() {

	var selected_rant;
	selected_rant = document.rant_selector_home.month.value;

	switch(selected_rant) {
		case 'feb_09':  location.href="http://moginspace.us/rants/rant_feb_09.htm"; break;
		case 'jan_09':  location.href="http://moginspace.us/rants/rant_jan_09.htm"; break;
		case 'jan_08':  location.href="http://moginspace.us/rants/rant_jan_08.htm"; break;
		case 'feb_08':  location.href="http://moginspace.us/rants/rant_feb_08.htm"; break;
		case 'mar_08':  location.href="http://moginspace.us/rants/rant_mar_08.htm"; break;
		case 'apr_08':  location.href="http://moginspace.us/rants/rant_apr_08.htm"; break;
		case 'may_08':  location.href="http://moginspace.us/rants/rant_may_08.htm"; break;
		case 'jun_08':  location.href="http://moginspace.us/rants/rant_jun_08.htm"; break;
		case 'sep_08':  location.href="http://moginspace.us/rants/rant_sep_08.htm"; break;
		default: ;
	}
}

