$(document).ready(function() {
	// TEMPLATES
	$('#logobar').load('ext_logobar.html');
	$('#tabs').load('ext_tabs.html');
	$('#footer').load('ext_footerbar.html');
	
	// EVENTS
	$('#logobar .wifi a').live('click',function() {
		___Popper($(this).attr('href'),'Free Wifi',445,310,'no');
		return false;
	});
	$('#contents .floor-plan a').click(function() {
		var FloorPlan=$(this).attr('title');
		var FloorPlanParsed='url(images/'+FloorPlan+')';
		$('#contents .photo-attachment').css('background-image',FloorPlanParsed);
	});
	$('#contents .map').click(function() {
		___Popper($(this).attr('href'),'Vicinity Map',500,393,'no');
		return false;
	});
});
___Popper = function(URL,PageName,wWidth,wHeight,ShowScroll) {
	var lPosition = (screen.width - wWidth) / 2;
	var tPosition = (screen.height - wHeight) / 2;
	Properties = 'height='+wHeight+',width='+wWidth+',top='+tPosition+',left='+lPosition+',scrollbars='+ShowScroll+',resizable=no'
	win = window.open(URL, PageName, Properties);
}
