Site = function(){
	this.initQueue = new Array();
	this.init = function(){
		for(var i=0;i<this.initQueue.length;i++){
			this.initQueue[i]();
		}
		$('input[@type="radio"]').css({
			border:'none',
			background:'none'
		});
	};
	this.cleanForURL = function(str){
		var reg = new RegExp('[ ,/)(]',"g");
		return str.replace(reg,'_');
	};
	this.getSelectedText = function(sel){
		if(sel.nodeName==='SELECT'){
			return Site.cleanForURL(sel[sel.selectedIndex].text);
		}else{
			return Site.cleanForURL(sel.value);
		}
	};
};