    //TLP - Next Business Locator
    $(document).ready(function() {
	    $("a#map_toggle").click(function() {
	    	if ($(this).hasClass("opened")) {
	    		$(this).removeClass();		
	    		//hideQuickPick();
	    		$("#location_promo_contents").animate({height:"60px"},400,"swing").removeClass(".expand");
	    		$("#AdToggle").attr('src', 'http://ad.doubleclick.net/adi/fandango.dart/mapcollapse');
	    		if (typeof(_hbLink) == 'function' )
                {
                    _hbLink('OGardenClose', 'OGardenClose');
                }
	    	} else {
	    		$(this).addClass("opened");	
	    		//hideQuickPick();
	    		$("#location_promo_contents").animate({height:"400px"},400,"swing").addClass("expand");
	    		$("#AdToggle").attr('src', 'http://ad.doubleclick.net/adi/fandango.dart/mapexpand');
	    		if (typeof(_hbLink) == 'function' )
                {
                    _hbLink('OGardenOpen', 'OGardenOpen');
                }
	    	}
	    	return false;
	    });
	    
	    function hideQuickPick() {
	    	$("#quickpickDropShadow").css("visibility","hidden");
	    	$("#white_arrow_pointer").removeClass("show");
	    	$(".showtimes_quickpick").css("visibility","hidden");
	    }
    });
