var MonsterRules = {	
	'a#download' : function(element){
		element.onclick = function(){			
			// Send some data to Google Analytics
			pageTracker._setVar('Download');
			pageTracker._trackEvent('Downloads', 'Main download');
								
			return true;
		}	
	},
	'a#sub-download': function(element){
		element.onclick = function(){			
			// Send some data to Google Analytics
			pageTracker._setVar('Download');
			pageTracker._trackEvent('Downloads', 'Footer download');
						
			return true;
		}	
	}
}
