﻿

function centerProductImage() {
	$("#productimage img").css('top',($("#productimage").height()-$("#productimage img").height())/2+'px');
}

$(document).ready(function() {

$("#thumbs img").click(function(){
	$("#prodimg").attr('src', image_url(''+$(this).data('imagefullname')));
	$("#prodimglnk").attr('href', image_url(''+$(this).data('imagefullname')));
	$("#thumbs img").css('border-color', '#b5cbdc');
	$(this).css('border-color', '#eec259');
	centerProductImage();
});

});

$(window).load(function(){
	centerProductImage();
});


