window.onload = function () {
	
	//botones Home,Bookmarks y contacto
	document.getElementById('home').onclick = function (){
		window.location.replace('/');
	}
	document.getElementById('bookmark').onclick = function (){
		title 	= "obiSpot :: webLog"; 
		url 	= "http://www.obispot.com/";
		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 && window.print) { // Opera Hotlist
			alert("Presione Ctrl+T para agregar esta web a sus favoritos")
		}		
	}
	document.getElementById('contact').onclick = function (){
		window.location.replace('mailto:jehobi@obispot.com');
	}
	
};