﻿$(document).ready(function(){

$('ul.small_product_images a').click(function(){
$('div#productimagecontainer img.product_image').attr('src', $(this).children('img').attr('src').replace('width=150', 'width=350').replace('height=150', 'height=400'));
$('div#productimagecontainer a.avzoom').attr('href', $(this).children('img').attr('src').replace('width=150', 'width=0').replace('height=150', 'height=0'));
$('div#productimagecontainer a.clicktoenlarge').attr('href', $(this).children('img').attr('src').replace('width=150', 'width=0').replace('height=150', 'height=0'));
		return false;
});

$(".avzoom").jqzoom();

//$('.avzoom').jqzoom({
//    fadeoutSpeed: 'fast',
//    hideEffect: 'fadeout',
//    imageOpacity: '0.25',
//    preloadText: 'Loading',
//    position: "right",
//    title: false,
//    xOffset: 25,
//    yOffset: 1,
//    zoomHeight: 230,
//    zoomWidth: 308
//});

});

