//Call this since MooTools is used. This way the $ doesnt break javascript. Note anytime you want to use jQuery start with jQuery, not $
jQuery.noConflict(); 
\
jQuery(document).ready(function(){
	initClasses();
});

function initClasses(){
	jQuery('.externalLink').attr('target', '_blank');
}
