/**
 * @author d.durand
 * requirements: Prototype & Scriptaculous libraries
 */

/*
if(typeof(LC_Object) == 'undefined') {
	new LC_Alert('lc_test.js requires including lc_baselib.js library');
}
*/
 
window.onload = LocoosIframe;

//test HTML elements
function LocoosIframe() { 
	
	//o.setDefaultType(o.LC_GMAP);
	//
	var jougne = new LC_LatLng(46.76209,6.388721);
	var map = new LC_Map("mapContainer",jougne,13);
	var icon1 = new LC_Icon('red');
	var marker1= new LC_Marker(map.getCenter(),icon1);
	marker1.show();
}