var host = "http://www.doritos.com.pe";

function cambiar(title){

	var iframe = document.getElementById("sec");
	
	//title = title.split("-");
	switch(title){
		case "DORITOS | HOME DORITOS":
			//alert("home");
			iframe.src="homedoritos.html";
			break;
		case "DORITOS | PLAY":
			iframe.src="play.html";
			break;
		case "DORITOS | FM":
			iframe.src="fm.html";
			break;
		case "DORITOS | MAG":
			iframe.src="mag.html";
			break;
	
		
	}
	
}
