

$(document).ready(function() {
		
	var countrySelectHTML = '\<div style="width:946px"> \
		<div style="width:400px; padding-left:60px"> \
			<div style="float:left; text-align:center; width:400px; padding-top:200px"> \
				<a href="http://' + document.location.hostname + '/gb"> \
					<img src="assets/images/enter_site.png" style="width:190px; height:40px" alt="Enter Site"/> \
				</a> \
			</div> \
			<div style="float:left; text-align:center; width:400px; padding-top:15px"> \
				<a href="http://' + document.location.hostname + '/gb"> \
					<img src="assets/images/gb_btn.png" style="width:124px; height:24px" alt="Great Britain" /> \
				</a> \
				<a href="http://' + document.location.hostname + '/us"> \
				<img src="assets/images/us_btn.png" style="width:124px; height:24px" alt="United States" /> \
				</a> \
				<a href="http://' + document.location.hostname + '/au"> \
				<img src="assets/images/au_btn.png" style="width:124px; height:24px" alt="Australia" /> \
				</a> \
			</div> \
		</div> \
	</div>';
	
	var advertHTML = '\<div style="padding-left:20px"> \
		<div style="float:left; width:314px"> \
			<div style="float:left; background-image:url(assets/images/text_box.png); background-repeat:no-repeat; width:305px; height: 262px; margin-top:15px; padding-top:5px; padding-right:5px"> \
				' + advertText + ' \
			</div> \
			<div style="float:left; width:314px; height:20px; padding-top:10px"> \
				<div style="float:left"> \
					<a href="#" onclick="startMission(); return $.facebox.close();"> \
						<img src="assets/images/Bond_Global_Mission_start_' + territory + '.png" style="width:178px; height:29px" alt="Start Mission" /> \
					</a> \
				</div> \
				<div style="float:left; padding-left:5px"> \
					<a href="' + url + '" target="_blank"> \
						<img src="assets/images/Bond_Global_Mission_buynow_' + territory + '.png" style="width:129px; height:25px" alt="Buy Quantum Of Solace of Blu-ray" /> \
					</a> \
				</div> \
			</div> \
		</div> \
		<div style="width:276px; height:328px; float:left"> \
			<img src="assets/images/Bond_Global_Mission_release_' + territory + '.png" style="width:276px; height:328px" /> \
		</div> \
	</div>';
	
	$.facebox('<div id="overlay"> \
		<div style="width:944px; height:557px; background-image:url(assets/images/GoogleEarth_start01_shadow.png); background-repeat:no-repeat"> \
			<div style="background-image:url(assets/images/GoogleEarth_start01_' + territory + '.jpg); background-repeat:no-repeat; width:940px; height:552px;"> \
				<div style="width:946px; height:220px"> \
					<div style="float:right; padding-right:10px; padding-top:10px"> \
						<a href="#" onclick="startMission(); return $.facebox.close();"> \
							<img src="assets/images/Bond_Global_Mission_close_' + territory + '.png" style="width:71px; height:17px; margin-right:5px" /> \
						</a> \
					</div> \
				</div> \
				<div style="width:946px; float:left" id="mainOverlayArea"> \
				</div> \
			</div> \
		</div> \
	</div>');
	
	if (loadAdvert == 1)
	{
		
		$('#mainOverlayArea').html(advertHTML);
		
	}
	else
	{
		
		$('#mainOverlayArea').html(countrySelectHTML);
		
	}
	
	$('#overlay').pngFix();

	$('#BondTitlesMenu').hide();
	
	$('#BondGEInstance').hide();

});


