$(document).ready(function() {

	$('#mm-video-sp').hide(); // hides spanish video box
	$('#pr-alt').hide(); // hides spanish press release text
	$('#videocode').hide(); // hides videocode textarea
	$('#mpegLink').hide(); // hides videocode textarea
	$("a[@href^='http']").attr('target','_blank'); // opens all absolute links in a new window
	$("a[@href^='/mnr/mnr_lib/']").attr('target','_blank'); // opens what's this link in a new window

	
	$('a').filter(function() { // adds onclick to external links for omniture's exit link tracking
		var theHref = this;
		if (theHref.hostname && (theHref.hostname != location.hostname)) {
			//$(theHref).attr('onclick', 'var s = s_gi("prnmultivucom"); s.tl(this,"e", s.prop5 = this);' {
			//$(theHref).bind('click', function(){
				//var s = s_gi('prnmultivucom'); 
				//s.tl(this,'e', s.prop5 = this);
			//});	

		};
	});
});



