// JavaScript Document

$(document).ready(function(){
	
	$("a[rel='external']").each(function(){
		$(this).attr("target","_blank");
	});
	
	$('a.text_popup').tooltip({
		fixPNG: true,
		track: true,
		delay: 0,
		showURL: false,
		opacity: 0
	});
	
	
	// Mailing text field behavior
	$('#txt_mlist').focus(function() {
		
		if($(this).val() == 'E-mail address'){
			$(this).val('');
		}
		else {
			return;	
		}
	});
	
	$('#txt_mlist').blur(function() {
		if($(this).val() == '') {
			$(this).val('E-mail address');	
		}
	});
	
	// Make links to external sites open in new tab
	
	
});
