/**
 * Attach listener
 * 
 * @return void
 */
function attachListeners() {
	// modals	
	
	Modal.register('showBigGoogleMap', 'click', 'tpl',
		{header: __('modal.googlemap.location'), 
		 tpl: 'googleMapTemplate', preventDefault : true, 
		 vars : {modalWidth : '680px', 
				title: getGoogleMapTitle(),
				address: getGoogleMapAddress()
				}
		}			
	);
	
	Modal.register('showBigGoogleMap2', 'click', 'tpl',
			{header: __('modal.googlemap.location'), 
			 tpl: 'googleMapTemplate', preventDefault : true, 
			 vars : {modalWidth : '680px', 
					title: getGoogleMapTitle(),
					address: getGoogleMapAddress()
					}
			}			
		);	
	// class="yui-skin-sam" (div id="map")
	document.getElementsByTagName('body')[0].setAttribute('class', 'yui-skin-lmc');

}


YAHOO.util.Event.addListener(window, 'load', attachListeners);
