slide change on hover with nextgen scrollgallery [closed]

Solution I am providing intiates the click event when mouse enters the thumbnail (with a delay to avoid passing mouse events).

jQuery('.scrollgallery .thumbarea img').hover(function(e){
  this.ScrollGalleryHover = setTimeout('initiateClick("'+jQuery(this).attr('src')+'");',500);
},function(e) {
  clearTimeout(this.ScrollGalleryHover);
});

function initiateClick(src) {
  jQuery('.scrollgallery .thumbarea img[src="'+src+'"]').click();
}