var obj_logPath = new Array();
obj_logPath.push({pathname:'/', logPath:'videos_home'});
obj_logPath.push({pathname:'/top/', logPath:'top'});
obj_logPath.push({pathname:'/search/?q=recetas', logPath:'videos_recetas'});
obj_logPath.push({pathname:'/search/?q=famosos', logPath:'videos_famosos'});
obj_logPath.push({pathname:'/search/?q=realeza', logPath:'videos_realeza'});
obj_logPath.push({pathname:'/search/?q=modelos', logPath:'videos_modelos'});
obj_logPath.push({pathname:'/search/?q=moda', logPath:'videos_moda'});
obj_logPath.push({pathname:'/search/?q=belleza', logPath:'videos_belleza'});
obj_logPath.push({pathname:'/search/?q=cine+y+tv', logPath:'videos_cineytv'});
obj_logPath.push({pathname:'/search/?q=papas+y+bebes', logPath:'videos_papasybebes'});
obj_logPath.push({pathname:'/search/?q=pap%C3%A1s+y+beb%C3%A9s', logPath:'videos_papasybebes'});

var v_url = location.href;
var v_hostname = location.hostname;
var v_from = v_url.indexOf(v_hostname)+v_hostname.length;
var v_pathname = v_url.substring(v_from);

var logPath = "videoblogs";
for (var i=0;i<obj_logPath.length;i++)
{
	if (obj_logPath[i].pathname == v_pathname)
	{
             logPath = obj_logPath[i].logPath;
	}
}

var logDomain = "www.ritmic.com";
var logChannel = "entretenimiento";
var logPage = "index";
var bannerDomain = "videos.ocio.orange.es";
var bannerSeg = 3;


var result = ''
result += '<script src="http://www.orange.es/orange/js/logs.js" type="text/javascript"><' + '/script>\r\n<script src="http://www.orange.es/orange/js/bannerWoo.js" type="text/javascript"><' + '/script>\r\n';

document.write(result)


