// Fix the width of divs in the product pages to handle long captions

/*
$(document).ready(
function() {
	$( '.image_div' ).each(function () { 
	        var object = $(this);
			object.width( object.children( 'img' ).width() );
	});
}
);*/