function set_popup_size() {
	var margin = parseInt(($(window).width() - 1000) / 2);
	if (margin > 1) {
		$('#main_content').css('margin-left', margin + 'px');
		$('#copyright').css('margin-left', margin + 'px');
		$('#footer ul').css('margin-right', margin + 'px');
	}
	else {
		$('#main_content').css('margin-left', '0px');
		$('#copyright').css('margin-left', '0px');
		$('#footer ul').css('margin-right', '0px');
	}
	$('#footer').width($('#container').width());
	$('#bottom').width($('#footer').width());
	$('#popup_window').height($('#popup').height() - 80).width($('#popup').width() - 40);
	$('#popup_top_bar').width($('#popup').width() - 40);
}

function open_popup(href, img) {
	$('#popup_header').attr('src', 'media/img/' + img + '.png');
	$('#popup_window').replaceWith('<iframe frameBorder=0 style="border: none;" type="text/html" src="' + href + '" id="popup_window"></iframe>');
	$('#overlay').show();
	$('#popup').show();
	set_popup_size();
}

function close_popup() {
	$('#overlay').hide();
	$('#popup').hide();
}

$(function() {
	set_popup_size();
	$('#add_hotspot').click(function() {
		addHotspotMarker();
	});
	$('a:contains("about")').click(function() {
		open_popup(this, "aboutus");
		return false;
	});
	$('a:contains("contact")').click(function() {
		open_popup(this, "contactus");
		return false;
	});
	$('a:contains("privacy")').click(function() {
		open_popup(this, "privacypolicy");
		return false;
	});
	$('#close_button').click(function() {
		close_popup();
	});
	$('#add_cancel').click(function() {
		clearAddMarker();
		this.hide();
	});
	$(window).resize(set_popup_size);
});
