function jsAPI(){
	this.clickLinkOut = function(section){

		if(section === 'parts_brochure'){
			try{
				crmEvent21();
			}catch(e){}
			
		} else if(section === 'motorsports'){
			try{
				crmEvent31();
			}catch(e){}

		} else if(section === 'motorsports_news'){
			try{
				crmEvent32();
			}catch(e){}

		} else if(section === 'media'){
			try{
				crmEvent35();
			}catch(e){}

		} else if(section === 'motorsports_catalog'){
			try{
				crmEvent50();
			}catch(e){}
			
		} else {
			// break out and do nothing if crm section doesn't exist
			return -1;
		}
	};

};
document.jsAPI = new jsAPI();


