/**
 * Convert Page to Mediabox View JS
 * @author Kevin Dew <kev@redbullet.co.uk>
 * @copyright Kevin Dew 2008
 * Dependcies: Mootools 1.11
 */

if ((parent.frames.length != 0) && (typeof parent.Mediabox != 'undefined'))
{
        document.write('<link rel="stylesheet" type="text\/css" href="\/css\/mediabox-convert.css" \/>');
	
	window.addEvent('domready', function()
	{
		if((typeof parent.Mediabox != 'undefined'))
		{
			$$('.mbCloseLink').addEvent('click', function(e)
			{
				if(typeof parent.Mediabox.close == 'function')
				{
					new Event(e).stop();
					parent.Mediabox.close();
				}
			});
		}
	});
	
}
