yepnope([{
  load: 'http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js'
}, {

	// Gmap 3 ********************************************************************

	load: 'abcmedia/js/gmap/3.0.0/jquery.gmap-v3.min.js',
	complete: function () {

		// Carte Situation
		$("#map").gMap({
			markers: [
				{ address : "Chaussée de la Boine 22 - 2000 Neuchâtel",
					html : "Business Office"
				}
			],
			latitude : 46.99449,
			longitude : 6.92988,
			zoom : 15,
			streetViewControl : false,
			scrollwheel: false
		});
		
	}
}, {

	// Colorbox ******************************************************************

	load: 'abcmedia/js/colorbox/1.3.16/jquery.colorbox-min.js',
	complete: function () {
		
		// Lightbox
		$("a[rel='lightbox']").colorbox({
			current : "Image {current} de {total}",
			maxHeight : "90%"
		});
		
	}
	
}, {

	// Textarea Autoresize *******************************************************

	load: 'abcmedia/js/autoresize/autoresize.jquery.min.js',
	complete: function () {
		
		// Préparation
		$('.autoresize textarea').css("display","block") ;
		
		// Autoresize
		$('.autoresize textarea').autoResize({
			animateDuration : 1000,
			extraSpace: 40
		}) ;
		
	}
	
}]);
