﻿var intContentHeight = 0;
var intContentWidth = 0;

if (strPageId == 'WhopperFreakout') {
	intContentWidth = parseInt(70, 10);
}

function resize_iframe() {
	$('#' + strPageId + 'Wrapper').css('height', $(window).height() + 'px');
	$('#' + strPageId + 'Wrapper').css('width', $(window).width() + 'px');

	$('#' + strPageId).css('height', ($(window).height() - intContentHeight) + 'px');
	$('#' + strPageId).css('width', ($(window).width() - intContentWidth) + 'px');
}

jQuery(document).ready(function() {
	resize_iframe();

	if (strPageId == 'Latenight' || strPageId == 'StarTrek' || strPageId == 'WhopperVirgins' || strPageId == 'WhopperBar') {
		$('body').css('background-color', '#000');
	}
	if (strPageId == 'BKRacing') {
		$('body').css('background-color', '#002041');
	}
	if (strPageId == 'DashAndDine') {
		$('body').css('background-color', '#f5b21b');
	}
});

$(window).resize(function(event) {
	resize_iframe();
});