How to install (NOTE: Please get the most recent version of jquery).
1) Download maxImage()
2) Download jQuery
3) Upload them to your server and know the urls to where they are.
4) Include them in your document, in this order:
<script src="jquery.pack.js" type="text/javascript" charset="utf-8"></script>
5) Upload an image and put it on your page with a generic image tag.
<script src="jquery.maximage.js" type="text/javascript" charset="utf-8"></script>
6) Your full image tag should look like:
<img src="url_to_image.jpg" class="className" />
7) Create a javascript '<script>' tag in between the pages '<head>' tags.
8) Put your jquery inside of the script tag.
9) Comment on this post and let me know how it went.
Your final <script> tag should look something like this.
<script>
$(document).ready(function(){
$('img.className').maxImage({
isBackground: true,
verticalAlign: 'top'
});
});
</script>