$(document).ready(function() {
			//Default Action
			$(".tab_content, .tab_content1").hide(); //Hide all content
			$("ul.tabs li:first").addClass("selected").show(); //Activate first tab
			$(".tab1 ul.tabs li:first").addClass("selected").show(); //Activate first tab
			$(".tab_content:first").show(); //Show first tab content
			$(".tab_content1:first").show(); //Activate first tab
			
			//On Click Event
			$("ul.tabs li").click(function() {
				$("ul.tabs li").removeClass("selected"); //Remove any "selected" class
				$(this).addClass("selected"); //Add "selected" class to selected tab
				var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
					$(activeTab).fadeIn();		
					$(".tab_content1").hide();
					
				if(activeTab == '#tab7777' || activeTab == '#tab8888' || activeTab == '#tab9999') {
					$('ul.tabs li').eq(0).addClass("selected");
				} else {
					$(".tab_content").hide(); //Hide all tab content
				}
				
				if(activeTab == '#tab1') {
					$("#tab1 ul.tabs li:first").addClass("selected").show();
					$(".tab_content1").hide();
					$(".tab_content1:first").show(); //Activate first tab
				}
				
				$(activeTab).fadeIn(); //Fade in the active content
				
				$('#map_canvas').css('visibility','hidden');
				if($('#map_canvas').length != 0)
				{
					if(activeTab == '#tab3')
					{
						var mapPos = $('#map_canvas').position();
						var mapTop, mapLeft;
						
						if($.browser.msie && $.browser.version < 9)
						{
							mapTop = mapPos.top-0;
							mapLeft = mapPos.left-0;
						}
						else
						{
							mapTop = mapPos.top+0;
							mapLeft = mapPos.left;
						}
						// alert(mapLeft);
						mapTop = mapTop/12+'em';
						mapLeft = mapLeft/12+'em';
						
						$('#map_canvas').css({top:mapTop,left:mapLeft,'visibility':'visible'});
					}
				}
				
				return false;

			});
		$('.park-summary .title a').click(function () { $('.park-summary #park').slideToggle(); $('.floor-area-summary #floor').hide(300);  
		
		$('.park-summary .title a').toggleClass("closetab"); $('.floor-area-summary .title a').removeClass("closetab"); return false;  });
		
		$('.floor-area-summary .title a').click(function () { $('.floor-area-summary #floor').slideToggle(); $('.park-summary #park').hide(300); $('.floor-area-summary .title a').toggleClass("closetab"); $('.park-summary .title a').removeClass("closetab");  return false; });
		
		
		
		
		

		
		
		
		});
