Can hover and click functions be combined into one, so for example:
click:
$(\'#target\').click(function() { // common operation });
Use mouseover instead hover.
$('#target').on('click mouseover', function () { // Do something for both });