// JavaScript Document

	//set to the current
	
	var currentURL = window.location+"";

	/*if(currentURL.indexOf('koodomobile.com') == -1){	
		
		currentURL = currentURL.replace(/http:\/\/[^\/]+/i,"http://www.koodomobile.com"); 		
		window.location = currentURL;
	}*/

	
	if(currentURL.indexOf('koodo') != -1){ 
		var domain = 'koodomobile.com';		
	}else{
		var domain ='';
	}
	//var domain = 'koodomobile.com';
	
	//needed to handle landing page theme
	/*if(path == undefined){
		var path = '../';
	}*/
	

	var theme = Get_Cookie('theme');	
	
	if (theme == null) {
		set_Cookie('theme','theme'+Math.floor(Math.random()*4+1),false,domain);
		//set_Cookie('theme','theme'+Math.floor(Math.random()*2+2),false,domain);
		
		theme = Get_Cookie('theme');
	}
	
	document.write('<link href="'+path+'lib/'+theme+'/parrotstyles.css" rel="stylesheet" type="text/css" />');