$(document).ready(function() {
	$('a[rel=ext]').click(function(event) {
		event.preventDefault();
		window.open($(this).attr('href'));
	});
	
	$('#mce-EMAIL').focus(function() {
		if ($(this).val() == 'Enter your email to be notified')
			$(this).val('');
	}).blur(function() {
		if ($(this).val() == '')
			$(this).val('Enter your email to be notified');
	});
});