$('#your-element-id').live('vmousedown', function()
{
	alert("Down")
});
$('#your-element-id').live('vmouseup', function()
{
	alert("Up")
});