$(document).ready(function(){
	$("a.jqbookmark").click(function(event){
		event.preventDefault(); // prevent the anchor tag from sending the user off to the link
		var url = this.href;
		var title = "Northumbrian Water Group Annual Report 2010 - " + this.title;
		if ($.browser.mozilla) { // Mozilla Firefox Bookmark
			window.sidebar.addPanel(title, url,"");
		} else if($.browser.msie) { // IE Favorite
			window.external.AddFavorite( url, title);
		} else { // for Safari, Konq etc - browsers who do not support bookmarking scripts (that i could find anyway)
			 alert('Unfortunately, this browser does not support the requested action,'
			 + ' please bookmark this page manually.');
		}
	});
});
