$(function(){
	$('<li id="action-bookmark"><a>Bookmark Page</a></li>').prependTo('#utility ul');
	$('<li id="action-print"><a>Print Page</a></li>').prependTo('#utility ul');
	$('#action-bookmark a').jFav();
	$('#action-print').click(
		function() {
			window.print();
		}
	);
	
	//#handle external links - disclaimer
	var disclaimer = $('<div></div>').html('<p>You are about to leave the Abbott www.prematurebaby.ie website. This link is provided for your convenience only. Abbott takes no responsibility for the content of any Web site maintained by any third party and makes no representation as to the accuracy or completeness of any information contained on this or any subsequent link.</p><p>Do you wish to leave this site?</p>').dialog({
			autoOpen: false,
			title: 'PrematureBaby.ie: External Link',
			modal: true
		});
	
	$("a[href^='http']").not("[href*='prematurebaby.ie']").not("[href*='abbott']").click(function(e){ 
		e.preventDefault();
		var url = $(this).attr('href');
		disclaimer.dialog( 'option', 'buttons', { 'YES': function(){ window.location.href = url; }, 'NO': function(){ disclaimer.dialog('close'); } });	
		disclaimer.dialog('open');
		
		//alert('external');
		//return false;
	});
});
