// Google Analytics File Download Tracker =================================================
var GA_FileDownload = {
	Init: function() {
		$("a[href$=.zip],a[href$=.pdf],a[href$=.doc],a[href$=.docx],a[href$=.xls],a[href$=.xlsx],a[href$=.ppt],a[href$=.pptx]").click(function() {
			pageTracker._trackPageview($(this).attr("href"));
		});
	}
}

var SetExternalLinks = {
	Init: function() {
		$('a[rel*=external]').click(function() { window.open(this.href); return false; });
	}
}

// Initialise Tracking Methods =============================================================
var General = {
	SetExternalLinks: SetExternalLinks
};

var Tracking = {
	GA_FileDownload: GA_FileDownload};
