Event.add(window, 'load', function()
{
	Require.module('show', function()
	{
		$('div.video-reviews a').each(function(a)
		{
			var li = I(a.parentNode), href = a.href;
			
			li.insertObject({
				url: href,
				title: a.title,
				width: 300,
				height: 250,
				type: 'flash'
			});
		});
	});
});
