

	//configure the two variables below to match yoursite's own info
	var bookmarkurl="http://www.finquesparellada.com"
	var bookmarktitle="Finques Parellada - Alquiler piso - Gestion imobiliaria"
	
	function addbookmark(){
	if (document.all)
	window.external.AddFavorite(bookmarkurl,bookmarktitle)
	else alert("Tu navegador no soporta esta caracteristica");
	}
  
	function encons(){
	 mensaje="No disponible. Perdone las molestias."
	 alert(mensaje);
	}
//-->

$(document).ready(function() {
  var target= '.bigLink';
	var hoverClass= 'hoverBigLink';
	$(target).each (function(){
	  $(this).hover(
		  function(){
			  $(this).addClass(hoverClass);
				status=$(this).find('a').attr('href');
				},
		  function(){
			  $(this).removeClass(hoverClass);
				status='';
				
			}
		);// end hover
		$(this).click(function(){
		  location=$(this).find('a').attr('href');
		});
		$(this).css('cursor','pointer');
	
	}); // end each
	
	 
}); // end ready()





