$(document).ready(function(){
	
	// add a 'rel' attrib for Opera
	if(window.opera) {
		if ($('a.bm').attr('rel') != '') {
			$('a.bm').attr('rel', 'sidebar');
		}
	}

	$('a.bm').click(function(e){
		e.preventDefault();
		var url = this.href;
		var title = this.title;
		
		if ( window.sidebar ) {
			//Firefox
			window.sidebar.addPanel(title, url,'');
		}
		else if( window.external ) {
			//Internet Explorer
			window.external.AddFavorite( url, title);
		}
		else if(window.opera) {
			return false; //rel="sidebar" should work for Opera
		}
		else {
			alert('Unfortunately your browser does not supprt this functionality.  Please bookmark manually');
		}
	});
});
