	var schedDropdown = {
		loc : location.pathname,
		ctg : 1,
		ord : 1,
		
		setPage : function() {
		
			this.ctg = (this.find("Std"))?1:((this.find("Stk"))?2:((this.find("Ahd"))?3:((this.find("Mrg"))?4:1)));
			this.ord = (this.find("Cnf"))?1:((this.find("Div"))?2:((this.find("Alp"))?3:1));
		
		},
	
		find : function(str) {
		
			ret = ((this.loc).indexOf(str)>0)?true:false;
			return ret;
		
		},
		
		display : function() {
		
			
			
			this.ctg = document.standings.ctg.options[document.standings.ctg.selectedIndex].value;
			this.ord = document.standings.ord.options[document.standings.ord.selectedIndex].value;
			
			dlink = "conferenceNew_" + this.ctgLink() + "_" + this.ordLink() + ".html";
			
			window.location = dlink;
			window.location.href = dlink;
			window.location.replace (dlink);
							
		},
		
		ctgLink : function() {
			s = parseInt(this.ctg);
			switch(s) {
				case 1 : return "Std"; break;
				case 2 : return "Stk"; break;
				case 3 : return "Ahd"; break;
				case 4 : return "Mrg"; break;
				default : return "Std"; break;
			}
		
		},
		
		ordLink : function() {
			s = parseInt(this.ord);
			switch(s) {
				case 1 : return "Cnf"; break;
				case 2 : return "Div"; break;
				case 3 : return "Alp"; break;
				default: return "Cnf"; break;
				
			}
			
		}
		
	
	}
	
	/* start pull */
	schedDropdown.setPage();