I'm attempting to install a javascript image zoom pluggin in 9.2 and running into an issue with curley braces. The pluggin requires that the options for the "rel" attribute be in curley braces as it holds some options for displaying the images.

The problem is I also need to us use curley braces within the "rel" attribute to dynamically generate the location and name of the image file. Here's what I need...

<a href='javascript:void(0);' rel="{gallery: 'gal1', smallImage: '{concat('images/product/medium/', $ImageName, '_1.jpg')}',largeimage:'{concat('images/product/large/', $ImageName, '_1.jpg')}'}" >
Of course this generates an error and the page will not display. Anyone know how to work around this?

Thanks!