$(document).ready(function(){
	if(window.opera) { if ($("a.bookmark").attr("rel") != ""){$("a.bookmark").attr("rel","sidebar");}}

	$("a.bookmark").click(function(event){
		event.preventDefault();
		var url = this.href;
		var title = document.title;		
		if (window.sidebar) { // ff
			window.sidebar.addPanel(title, url,"");
		} else if( window.external ) { // IE
			window.external.AddFavorite( url, title);
		} else if(window.opera) {
			return false;
		} else { 
			 alert('Your browser does not support the requested action, please bookmark this page manually.');
		}	
	});
});
