/* 
*	JS Template for jquery
*	Copyright Chris J. Lee 2007
*/

$(document).ready(function(){
	$('.address').hide();
	$('.theater').click(function(event) { 
		$(this).children('.address').toggle();
		return false;
	});
	
});