$(document).ready(function(){
	var add2fav_box = $('\
	<div id="a2fbox" style="position: fixed; top: 90px; right: 0; z-index: 999;width: 29px; height: 164px; margin-top: 0px; margin-right: 0px; background: none">\
	<a href="http://www.szybkiserwisbmw.pl" title="Szybki Serwis BMW" class="jbookmark"><img src="js/add2fav/button.png" width="29" height="164" /></a>\
	</div>');
	$('body').append(add2fav_box);
	
	
	
	
	// add a "rel" attrib if Opera 7+
	if(window.opera || window.chrome ) {
		if ($("a.jbookmark").attr("rel") != ""){
			$("a.jbookmark").attr("rel","sidebar");
		}
		$("div#a2fbox").hide(); 
	}

	$("a.jbookmark").click(function(event){
		event.preventDefault();
		var url = this.href;
		var title = this.title;
		
		if (window.sidebar) { // Mozilla Firefox Bookmark
			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.');
		}
	
	});
	
	
});
