var AndreJoyau = function() {
        
    function AndreJoyau() {
    }
    
    AndreJoyau.SwapImage = function(image) {
        $('product_image').setAttribute('src', image);
    };
    
    AndreJoyau.AttachEvents = function(el) {
        MM_preloadImages(
            '/images/join_ovr.gif',
            '/images/collection_ovr.gif',
            '/images/process_ovr.gif',
            '/images/materials_ovr.gif',
            '/images/showrooms_ovr.gif',
            '/images/press_ovr.gif',
            '/images/contact_ovr.gif'
        );

		//figure out where the scroller should start
		if(document.getElementById('product_pos')) {
			var pos = document.getElementById('product_pos').value;
			var start_x = (pos * -13);
		}
			
        if ($('divContent')) {
            InitialiseScrollableArea('divContent', 0, start_x);
        }
		else if($('divContent_nosection_nav')) {
			InitialiseScrollableArea('divContent_nosection_nav',0 ,start_x);
		}
    };
            
    return AndreJoyau;
}();

window.addEvent('domready', function() { 
    AndreJoyau.AttachEvents();
});
