function initialize(){	var iDefaultLatitude1  = 41.388255;	    var iDefaultLatitude2  = 49.641059;    var iDefaultLongitude1 = 2.164521;	    var iDefaultLongitude2 = 6.271285;		if ( GBrowserIsCompatible() ) 	{	    var map1 = new GMap2(document.getElementById("gmap1"));	    map1.setUIToDefault();	    var point1 = new GLatLng( iDefaultLatitude1, iDefaultLongitude1 );	    var marker1 = new GMarker( point1 );	    map1.addOverlay( marker1 );	}	map1.setCenter( new GLatLng( iDefaultLatitude1, iDefaultLongitude1 ), 16 );	$('#locations_map_1').css('display', 'none');	$('#locations_enlarge_1').css('display', 'block');		if ( GBrowserIsCompatible() ) 	{	    var map2 = new GMap2(document.getElementById("gmap2"));	    map2.setUIToDefault();	    var point2 = new GLatLng( iDefaultLatitude2, iDefaultLongitude2 );	    var marker2 = new GMarker( point2 );	    map2.addOverlay( marker2 );	}	map2.setCenter( new GLatLng( iDefaultLatitude2, iDefaultLongitude2 ), 16 );	$('#locations_map_2').css('display', 'none');	$('#locations_enlarge_2').css('display', 'block');		$('body').css('overflow', 'normal');};	window.onload = initialize;window.onunload = GUnload;
