Colorado Powersports
Phone: 303-447-3500
Fax:
';
$.each(obj.data, function(idx, d){
if (d.shortName && itemIsAllowed(d)){
html += '';
}
});
html += ''
//Create the popup and add it to the DOM
var child = $(html);
child.appendTo(self);
child.show();
};
//Deals with popups that are at the detail level
function createDetailPopup(config){
var self = config.el;
var popup = config.popup.replace(/ /g,"");
var obj = config.obj;
var href = self.attr('href');
var src = obj.data.src.replace("{width}","200").replace("{height}", "150");
var html = ''
+ ''
//Create the popup and add it to the DOM
var child = $(html);
child.appendTo(self);
child.show();
}
//Prevent all hash href from forwarding home after adding base tag to header
$('a[href="#"]').click(function(){ return false; } )
if(String(document.location.href).indexOf("#")>0){
window.setTimeout(function(){
try{
$(".shop-by-family a:contains("+(String(document.location.href).split("#")[1])+"):first").click();
}catch(e){}
},0);
}
});
function itemIsAllowed(jsItem){return true};