/*
	Copyright DTDigital         :: www.dtdigital.com.au ::
	Unauthorised modification / use is a criminal offence, and
	will be prosecuted to the fullest extent permitted by law.
	All Rights Reserved
*/


// Attach to href with pdf or jpg extension
$(function(){
	$("a[@href*=.pdf], a[@href*=.jpg], a[@href*=.PDF], a[@href*=.JPG]").each(function(){
		$(this).click(function(evt){
			var getFileName = $(this).attr("href").split("/").reverse()[0];
			var getFileAlt = ' - ' + $(this).children("img:first").attr("alt");
			
			if(getFileName.match(/.pdf/i))
			{
				pageTracker._trackPageview( 'BROCHURE: ' + getFileName );
			} else if(getFileName.match(/.jpg/i))
			{
				pageTracker._trackPageview( 'IMAGE: ' + getFileName + getFileAlt );
			}
		});
	});	
});