﻿//************************************************************************************* 
// File     :   synd_centerFeaturedImage.js
// Requires :   mf_domLibrary_0.1.js, prototype.js
// Author   :   Kyle Weems (ksw)
// Origin   :   mindfly.com
// Created  :   March 18, 2008
// Modified :   August 13, 2009
// Purpose  :   On a page where the featured products are located, center the thumbnails 
//              Of the products.
//*************************************************************************************

function centerFeaturedImages() {
    if ($$('.spnFeaturedProducts').length > 0) {
        for (i = 0; i < $$('.spnFeaturedProducts').length; i++) {
            $$('.spnFeaturedProducts')[i].select('.Thumbnail')[0].onload = function() {
            this.style.left = (Math.round(75 - (this.offsetWidth / 2)) - 10) + 'px';
            };
        }
    }
} // end of function centerFeaturedImages()

addLoadEvent(centerFeaturedImages);



