
		var url = document.URL;
		var filename = (url.substring(url.lastIndexOf("\/")+1,url.length));

		//Handle Market Changes
		$(document).ready(function(){ 
			
			//if Javascript NOT disabled, hide the Go button
        	$("#submitGo").hide();
			
			//Onchange of the marketselect Popup
			$('#marketSelect').change(function() {
				//	1.  Go to Selected Market
				var selectedmarket = $('#marketSelect').attr('value');
				if (selectedmarket=="ON" || selectedmarket=="BC") {
					top.location= "/" + selectedmarket + "/index.html";
				} 	
			}) //End #marketselect.change
		}) //End Document Ready
