/*
	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 ashx extension (covers downloads e.g. pdf, doc).
$j(function() {

    var oldAttrSel = "";
    try {
        $j("a[@href*='Map']");
        oldAttrSel = "@";
    } catch (e) {
    }

    $j("a[" + oldAttrSel + "href*='.ashx'], a[" + oldAttrSel + "href*='.ASHX']").each(function() {
        $j(this).click(function(evt) {
            var getFileName = location.pathname + $j(this).attr("href");

            if (getFileName.match(/.ashx/i)) {
		_gaq.push(['_trackPageview', getFileName]);
                
            }
        });
    });
})
