function fetchReduxGet(url) {
	url = url.replace("/","");
	noquote = url.replace("'","");
	noquote = noquote.replace("'","");
	redux.get(noquote,true);
	return(true);
	}
	
redux.event.create('onsection',function(v){		
		if (Browser.Engine.trident) {
			$('main_nav_swf').selectit(v);
		}else{
			try{
				$('main_nav_swfs').selectit(v);
			}catch(err){
				
			}
		}
});



function Client() {
}

Client.prototype.mobileClients = [
	"midp",
	"240x320",
	"blackberry",
	"netfront",
	"nokia",
	"panasonic",
	"portalmmm",
	"sharp",
	"sie-",
	"sonyericsson",
	"symbian",
	"windows ce",
	"benq",
	"mda",
	"mot-",
	"opera mini",
	"philips",
	"pocket pc",
	"sagem",
	"samsung",
	"sda",
	"sgh-",
	"vodafone",
	"xda",
	"iphone",
	"ipad",
	"android"
];

Client.prototype.isMobileClient = function(userAgent)
{
	userAgent=userAgent.toLowerCase();
	for (var i in this.mobileClients) {
		if (userAgent.indexOf(this.mobileClients[i]) != -1) {
			return true;
		}
	}
    return false;
}

var client = new Client();

