jQuery(function($){
	
	var msgBookmarkingNotSupported = $('#bookmarkingNotSupported').val();
	var bookmarkTitle = document.title;
	var bookmarkHref = location.href;
	
	$('#add_bookmark').bind('click', function(event) {
		
		event.preventDefault();
		
		if (window.external && document.all) { // IE Favorite
			window.external.AddFavorite(bookmarkHref, bookmarkTitle);
		} 
		else if (window.sidebar) { // Mozilla Firefox Bookmark
			window.sidebar.addPanel(bookmarkTitle, bookmarkHref, '');
		}
		else {
			alert(msgBookmarkingNotSupported);
		}
		
	});
	
});
