/**
 Track outbound links in the showcase
**/
trackCTA = function(path){
	// First we strip the beginning slash
	if (path.substring(0,1) == "/" || path.substring(0,1) == ":") path = path.substring(1);
	// Split and store the path into an array by depth
	var pathArray = path.split('/');
	
	//Setup the Omniture code to track the thrings we need 
	s.linkTrackVars="prop29,hier2,eVar29";		
	s.hier2 = hier2Base.join(',')+","+ pathArray.join(',');
	s.prop29 = s.pageName+":"+pathArray.join(':');
	s.eVar29 = s.pageName+":"+pathArray.join(':');	
	// Send tracking data
	s.tl(this,'o','Showcase tracking');
	// Show debug window
	if (debugMode) window.open("","stats_debugger","width=600,height=600,location=0,menubar=0,status=1,toolbar=0,resizable=1,scrollbars=1").document.write("<script language=\"JavaScript\" src=\"http://192.168.112.2O7.net/stats_debugger.php\"></"+"script>" + "<script language=\"JavaScript\">window.focus();</script>");
	// Show data in Firebug console
	try{
		console.log ("CTA "+path)
	}catch(_){
	
	}
}
/**
 Track inbound links within the showcase
**/
trackImpression = function(path){
	//First we strip the beginning slash
	if (path.substring(0,1) == "/" || path.substring(0,1) == ":") path = path.substring(1);
	// Split and store the path into an array by depth
	var pathArray = path.split('/');

	
	//Setup the Omniture code to track the thrings we need 
	s.linkTrackVars="prop29,hier2";
	s.hier2 = hier2Base.join(',')+","+ pathArray.join(',');
	s.prop29 = s.pageName+":"+pathArray.join(':');
	// Send tracking data
	s.tl(this,'o','Showcase tracking');
	// Show debug window
	if (debugMode) window.open("","stats_debugger","width=600,height=600,location=0,menubar=0,status=1,toolbar=0,resizable=1,scrollbars=1").document.write("<script language=\"JavaScript\" src=\"http://192.168.112.2O7.net/stats_debugger.php\"></"+"script>" + "<script language=\"JavaScript\">window.focus();</script>");
	// Show data in Firebug console	
	try{
		console.log ("Impression "+path)
	}catch(_){
	
	}
}