window.onload = init;
function init() {
	
	if(window.document.cookie) {
		
		
		var cookies = window.document.cookie;
		var monthValue = cookies.indexOf("monthselect");	

		if(monthValue == -1) {
			
			monthChoice = 0;	
		}
		
		else {
			
			var monthString = monthValue + 12;
			
			var monthChoiceOne = cookies.charAt(monthString);
			var monthChoiceTwo = cookies.charAt(monthString + 1);
				
			if(monthChoiceTwo == ";") {			
				
				monthChoice = monthChoiceOne;
			}
			else {
				monthChoice = monthChoiceOne + monthChoiceTwo;	
			}

		}
		
	
	}
	
	window.document.forms.f.s.options[monthChoice].selected = true;
	
	window.document.forms.f.s.onchange = show_month;
	
}
function show_month() {

	var num = window.document.forms.f.s.selectedIndex;
	
	//var expiry = new Date();
	//expiry.setTime(expiry.getTime()+(7*24*60*60*1000));
	
	window.document.cookie = "monthselect=" + num;// + ";" + "expires=" + expiry.toGMTString()+ ";" + "path=/";
	
	window.location.reload()
	
}