$(function() {
	$("a.favoritos").click(function(e) {
		e.preventDefault();
		// recebendo o endereço do site
		var url = 'http://www.bioplastia.med.br';
		// recebendo o titulo do site
		var title = 'Bem-vindo ao bioplastia.med.br';
                
		if ($.browser.mozilla == true) {
			window.sidebar.addPanel(title, url, '');
			return false;
		} else if($.browser.msie == true) {  
			window.external.AddFavorite( url, title);
			return false;
		} else {
			alert('Pressione as teclas CTRL + D para adicionar aos favoritos.');
		}
	});
});
