// JavaScript Document
jQuery.fn.extend({
	addFav: function() {
		var $this = this;
		$this.click(function(){
			if(navigator.appName == "Netscape") {
				jAlert("Pressione Ctrl+D para adicionar "+this.title+" nos seus favoritos!", "Adicionar nos favoritos");
				window.status='';
				return false;
			}
			if(navigator.appName.indexOf("Explorer") > -1) {
				window.external.addFavorite(this.href, this.title);
				return false;
			}
			if(navigator.appName == "Opera") {
				return true;
			}
		})
	}
})
