AbelsonTaylor.ExtLinks = {

	loc: '', // href for clicked link
	init: function() {
		// handle external links
		$('a[rel="external"]').click(function() {
			loc = $(this).attr('href');
			$.prompt("You are now leaving Curosurf.com and being redirected to a site that is not hosted by Cornerstone Therapeutics Inc.", {
				buttons: { OK: true, CANCEL: false },
				prefix: 'cleanblue',
				promptspeed:'fast',
				callback:AbelsonTaylor.ExtLinks.cb
			});
			return false;
		});
	},

	cb: function(btnVal, promptMsg, formVals) {
		if (btnVal) { location.href = loc; }
	}
};

$(document).ready(function() {
	AbelsonTaylor.ExtLinks.init();
});
