$(function() {
	
	// Add "rel" attribute to bookmark links if Opera 7+
	if (window.opera) {
		if ($("a.btn_bookmark").attr("rel") != "") {
			$("a.btn_bookmark").attr("rel", "sidebar");
		}
	}
	
	// Bookmark this page
	$("a.btn_bookmark").click(function(event) {
		// Disable url redirect
		event.preventDefault();
		
		var url = $(this).attr("href");
		var title = $(this).attr("title");
		
		if (window.sidebar) {
			// Mozilla Firefox
			window.sidebar.addPanel(title, url, "");
		}
		else if (window.external) {
			// Internet Explorer
			window.external.AddFavorite(url, title);
		}
		else if (window.opera) {
			// Opera
			return false;
		}
	});
	
});
