var BlendProduct = {
	load:function() {
		
		if( $('product') ) {
			
			var myFx = new Fx.Style('product', 'opacity', {duration:2000, transition: Fx.Transitions.linear});
			
			if ( $('product') ) {
				myFx.start(0,1);
			}
		}
	}
};

window.addEvent('load', function() {BlendProduct.load()});
