$(document).ready(function() {

 $(".thumbWrapper a").click(function(e){ e.preventDefault(); });


$(".thumbWrapper a").click( function() {

$(".thumbWrapper a").css ("background-position", "left top")
$("body#products .thumbWrapper a").css ("background-position", "left bottom")



var path = $(this).css("background-image");
$(this).css( "background-position", "left bottom" );
//alert(path);

var path_arr = path.split("thumb");

path_arr2 = path_arr[1].split(".");

//strip 'url(' from beginning of path (IE has 'url("')
path_prefix = path_arr[0].substring(path_arr[0].indexOf('http'), path_arr[0].length);

//alert(path_prefix + "image" + path_arr2[0] + ".jpg");
$(this).parent().parent().children("img").attr("src",  path_prefix + "image" + path_arr2[0] + ".jpg") ;



} );


}
);