	$(document).ready(function() {
		$('img.reflect').each(function(){
			$(this).load( 
				function(){ 
					$(this).reflect({height: 0.3, opacity: 0.6} );
				} 
			);
		});
	});
