﻿if (top == self) top.location.replace('http://www.lesfantasticos.co.uk/');

$(document).ready(function()
{
    var containerHeight = $('#container').outerHeight() + 50;
    var windowHeight = $(window).height();

	if(top.frames[0].OffsetPlayer != undefined)
    	top.frames[0].OffsetPlayer(((containerHeight < windowHeight) ? 20 : 10), containerHeight + ' - ' + windowHeight);
    else
        setTimeout(function() { top.frames[0].OffsetPlayer(((containerHeight < windowHeight) ? 20 : 10), containerHeight + ' - ' + windowHeight); }, 500);
});