$(document).ready(function(){

});

function favoritos(){
        //e.preventDefault(); // this will prevent the anchor tag from going the user off to the link
        var bookmarkUrl ="http://www.emircarrillo.com/";
        var bookmarkTitle = "Emir Carrillo - Inmuebles Rurales";
 		
        if (window.sidebar) { // For Mozilla Firefox Bookmark
                window.sidebar.addPanel(bookmarkTitle, bookmarkUrl,"");
        } else if( window.external || document.all) { // For IE Favorite
                window.external.AddFavorite( bookmarkUrl, bookmarkTitle);
        } else { // for other browsers which does not support
                 alert('Tu navegador no soporta esta funcion.');
                 return false;
        }
}

