Solucio esdeviments
De wikiserver
var functionControlador=function(event){
if ($(this).css("color")=="#0000ff")
$(this).css("color", "#ffff00");
else
$(this).css("color", "blue");
};
$(document).ready(function(){
$("p").bind("click mouseenter mouseleave", functionControlador);
});