var product = {
	setGlobals: function() {
		product.finishLinks = jQuery('a.finish');
		product.productImage = jQuery('div.product-image img');
		product.loadingImg = '<img src="/images/gui/icon/loading-black-on-white.gif" />';
		product.productDetails = jQuery('div.product-details');
	},
		
	show: {
		thumbScroller: function() {
			swfobject.embedSWF( "/flash/thumb_scroller.swf", "thumb_scroller", "680", "120", "9.0.0", "flash/expressinstall.swf", flashvars, params, attributes);
		}
	},
	
	loadPage: function() {		
		product.show.thumbScroller();
	},
	
	morePhotos: {
		open: function(){
			
		}
	}
};

jQuery(document).ready(function(){
	product.setGlobals();
	product.loadPage();
});
