function IsEIP(){
if(typeof(CmsBasePageEIP)==='undefined'){
return false;
}
else{
return true;
}
}
$(window).load(function(){
$("#lateral").find(".RadPanelBar_Default").find(".rpGroup").find(".rpSelected").parents(".rpSlide").parents("li").find("a:first").attr("class","rpLink rpExpandable rpExpanded rpSelected");
$("#lateral").find(".RadPanelBar_Default").find("a").click(function(e){
var lHref=$(this).attr("href");
if(lHref){
document.location.href=lHref;
}
e.stopPropagation();
return;
});
$(".producto_lista").click(function(){
if(!IsEIP()){
var lHref=$(this).find("a:eq(0)").attr("href");
if(lHref){
document.location.href=lHref;
}
}
})
});