﻿/*******************************************************************************
Module: Merchant details in tabbed control.
File: jquery.merchantdetails.js
Initial Author: Manish
Date Created: 4/17/2009 
Purpose: jQuery code for handling merchant details.
Copyright (c) 2008 Vail Resorts, Inc.
*******************************************************************************/

// Initialize the google map on the click on Map View tab.
	jQuery(document).ready(function() {
    $('div.pageNumbering ul:first').addClass("pageNo");
    $('div.pageNumbering ul:last').addClass("pageNo");
    $("div#middleTabsContainer a[href='#fragment-2']").click(function(){
        if(!_mapInited){
            _mapInited=true;
			loadGMapScript();
            }
        });
    });
	
	function bindAjaxClick()
	{
		$("div#middleTabsContainer a[href='#fragment-2']").bind("click", function(event){
			//event.preventDefault();
			if(!_mapInited)
			{
				_mapInited=true;
				LoadMap();
			}
        });
	}
	function initMap2()
	{
		LoadMap();
		bindAjaxClick();
		return;
	}
	
	function loadGMapScript() 
	{
		if (typeof GMap2 == 'function') 
		{
			LoadMap();
			return;
		}
		var script = document.createElement('script');
		script.setAttribute('src', 'http://maps.google.com/maps?file=api&v=2.x&key=' + $("[id$=divGMap]").html() + '&async=2&callback=initMap2');
		script.setAttribute('type', 'text/javascript');
		document.documentElement.firstChild.appendChild(script);
	} 