var homeGallery = {
    
    links : null,
    images : null,
    
    currentIndex : 0,
    
    init: function()
    {
        homeGallery.links = $$('#small a');
        homeGallery.images = $$('#big img');
        
        for(var i = 0; i < homeGallery.links.length; i++)
        {
            homeGallery.links[i].addEvent("click", function(){
                var index = parseInt(this.id.replace("gallery_link_", ""));
                $('gallery_'+homeGallery.currentIndex).setStyle('display', 'none');
                $('gallery_'+index).setStyle('display', 'inline');
                homeGallery.currentIndex = index;
                return false;
                });
        }
    }
    
}

window.addEvent("domready", function(){
    if(document.getElementById("galleryContainer_2"))
    {
        homeGallery.init();
    }
});
