/*
	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() {

    var oldAttrSel = "";
    try {
        $("a[@href*='Map']");
        oldAttrSel = "@";
    } catch (e) {
    }

    $("a[" + oldAttrSel + "href*=.pdf], a[" + oldAttrSel + "href*=.jpg], a["+oldAttrSel+"href*=.PDF], a["+oldAttrSel+"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);
            }
        });
    });
});