
//new js
function getFeature (feature) {
	switch (feature) {
		
		case "mainfeature1":
			window.location = ("http://www.disney.com.br/disneychannel/hannahmontana/");
		break;
		
		
		case "mainfeature2":
			window.location = ("http://disney.com.br/playhousedisney/site/Timmy_e_seus_amigos/index.html");
		break;
		
		
		case "mainfeature3":
			window.location = ("http://disney.com.br/disneyxd/series/iron_man/");
		break;
		
		
			
		case "featureB1":
			window.location = ("http://www.disney.com.br/filmes/dvd/TinkerBell2/");
		break;
		
		case "featureB2":
			window.location = ("http://www.disney.com.br/filmes/dvd/up/");
		break;
	
		//case "featureB3":
			//window.location = ("http://www.disney.com.br/DVD/spacebuddies/");
		//break;
		
		
		
		case "featureC":
			window.location = ("http://www.disney.com.br/filmes/cinema/os_fantasmas_de_scrooge/index.html");
		break;
		
		case "featureC2":
			window.location = ("http://www.disney.com.br/filmes/cinema/aprincesaeosapo/index.html");
		break;

		//case "featureC3":
			//window.location = ("http://www.disney.com.br/cinema/jonas/");
		//break;
		
		
		
		case "featureD1":
			window.location = ("http://actionfingers.disneyxd.com.br/");
		break;
		
		
		case "featureD2":
			window.location = ("http://passeparaonivelmaximo.disneyxd.com.br");
		break;
		
		
		//case "featureD3":
			//window.location = ("");
		//break;
	
		
		case "featureE":
			window.location = ("http://www.disney.com.br/fadas/");
		break;
		
		
		//case "featureE2":
			//window.location = ("http://www.disney.com.br/toontown/");
		//break;
		
		//case "featureE3":
			//window.location = ("http://www.disney.com.br/promopenguin/");
		//break;
	 
	}
} 


