<div id='one'>one</div>
<div id='two'>two</div>
function Red(e)
{
$(e.target).css('color','red');
}
// if i bind an event click to div='one' with fn "Red", function "Red" will receive e="div one", now i want to bind some event on div=two so that it send div=one to function Red.
remember: i don't want to bind any event to div=one