delayedMouseover( fn, delay (in ms) )
$("#example1 p").delayedMouseover(function(event){
$(this).unbind(); //Remove the delayed mouseover
$(this).css("color","#FF0000").append(" - Foo (1 second)");
});
$("#example2 p").delayedMouseover(function(event){
$(this).unbind(); //Remove the delayed mouseover
$(this).css("color","#1F920E").append(" - Foo Foo Foo (3 seconds)");
}, {delay: 3000});