top.document.title					= "Dirty Dancing America - Official Site - Tickets";
$(document).ready(function() {
	$('#boston').addClass('hideme'); $('#la').addClass('hideme');
	doc_y	= $(document).height();
	$("#iframe", top.document).css({ height: doc_y });
	
	$('#btn_boston').click(function(event) {
		adj	= $("#boston").css("display") == "none" ? "+=" : "-=";
		$("#iframe", top.document).animate({ height: adj + $("#boston").height() });
		$('#boston').slideToggle('slow');
		event.preventDefault();
	});
	$('#btn_la').click(function(event) {
		adj	= $("#la").css("display") == "none" ? "+=" : "-=";
		$("#iframe", top.document).animate({ height: adj + $("#la").height() });
		$('#la').slideToggle('slow');
		event.preventDefault();
	});
	
	$('#btn_la, #btn_boston').toggle(
		function() { $(this).addClass('city_close'); },
		function() { $(this).removeClass('city_close'); }
	);
});