Can hover and click functions be combined into one, so for example:
click:
$(\'#target\').click(function() { // common operation });
$("#target").hover(function(){ $(this).click(); }).click(function(){ //common function });