mouseDown = function();
===== Examples =====
-loadURI('google.ru');
//Obtain a random element with tag "input"
var element = getElement('input');
//Emulate mouse movement to a position (550,5) of element
moveToElement(element,0,0,550,5);
//Emulate the pressing of the left mouse button
mouseDown();
//Emulate the releasing of the left mouse button
mouseUp();