mtLibAddEvent(
	function(){
		if(!document.getElementById) return;
		quickLinks.init();
	}
);

var quickLinks = {
	init : function(){
		var _self = this;
		var oQuickLink = document.getElementById("quickLinks");
		var oSelect = document.getElementById("quickLinksList");
		oSelect.selectedIndex = 0;
		oSelect.onchange = function(){
			if(oSelect.selectedIndex){
				document.getElementById("quickLinks").submit();
			};
		};
	}
};
