$(document).ready(function(){
	// add a "rel" attrib if Opera 7+
	if(window.opera) {
		if ($("a.bmthis").attr("rel") != ""){
			$("a.bmthis").attr("rel","sidebar");
		} 
	}

	$("a.bmthis").click(function(event){
		event.preventDefault();
		var url = location.href;
		var title = document.title;

		if(window.sidebar){  // Mozilla Firefox Bookmark
			window.sidebar.addPanel(title, url, "");
		} else if(window.chrome){
			alert('Press ctrl+D to bookmark (Command+D for macs) after you click Ok');
		} else if(window.external){ // IE Favorite
			window.external.AddFavorite(url, title);
		} else if(window.opera && window.print){  // Opera 7+
			alert('Press ctrl+D to bookmark (Command+D for macs) after you click Ok');
		} else { 
			 alert('Unfortunately, this browser does not support the requested action,'
			 + ' please bookmark this page manually.');
		}

 // Mozilla Firefox Bookmark
/*
		if (window.sidebar) {
			window.sidebar.addPanel(title, url,"");
		} else if( window.external ) { // IE Favorite
			window.external.AddFavorite( url, title);
		} else if(window.opera) { // Opera 7+
			return false; // do nothing
		} else { 
			 alert('Unfortunately, this browser does not support the requested action,'
			 + ' please bookmark this page manually.');
		}
*/	
	});
});

