Thanks John, it worked perfectly. Below is the code including the one you mentioned in the post
Code:
<script type="text/javascript">
$(document).ready(function()
{
$('.magnifyarea, .cursorshade, .zoomstatus, .zoomtracker').remove();
$('#multizoom1').addimagezoom(
{
speed: 1500,
imagevertcenter: true,
magvertcenter: true,
zoomrange: [2, 6],
magnifiersize: [250,250],
magnifierpos: 'left',
cursorshadecolor: '#fdffd5',
cursorshade: true
});
$('.multizoom1 a').mouseenter(function()
{
$(this).trigger('click');
});
});
</script>
Bookmarks