jquery

jquery


i hav to call this event in jquery on client side;
how? i dnt have an idea
this is the event
protected void gvPracticesAssignedFacilities_RowDataBound(object sender, GridViewRowEventArgs e)
{



if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes["onmouseover"] = "javascript:setMouseOverColor(this);";
e.Row.Attributes["onmouseout"] = "javascript:setMouseOutColor(this);";
e.Row.Attributes.Add("onclick", "javascript:rowindexgv2(this)");


}
//int i = Convert.ToInt32(hdnfldSelectedRow.Value) + 1;


}
plz tell me how this function is call in jquery
i cant take document.ready in this
i'm doing this in javscript using asp.net