$(function () {
	$('.a-tour').click(function () {
		$.get($(this).attr('href'), null, function (data) {
			$(data).dialog({width: 600});
		});
		return false;
	});

	$('.a-locations').click(function () {
		$.get($(this).attr('href'), null, function (data) {
			$(data).dialog({width: 700, height: 500, position: 'top',
				open: function () {
					swfobject.embedSWF("swf/map.swf", "locations", "660", "440", "9.0.0");
				}
			});
		});

		return false;
	});

	$('.nav').superfish();

	$('.a-sub-tour').live('click', function () {
		$('#div-tour').load($(this).attr('href'));
		return false;
	});
});

