jQuery(document).ready(function() {
	var lang = jQuery('#cur-lang').attr('value');
	if (lang == 'fr') {
		lang = '';
	}
	else {
		lang = '/' + lang;
	}
	
	// Default behavior : index
	jQuery.post(lang + '/collections/legend.html', {
		reference : jQuery(".items").children("div").children(
				".thumbnails:first").attr("alt")
	}, function(legend) {
		jQuery("#details").html(legend);
	});

	jQuery.post("/collections/extend.html", {
		reference : jQuery(".items").children("div").children(
				".thumbnails:first").attr("alt")
	}, function(extend) {
		jQuery("#showcontainer").html(extend);
	});

	// Clic behavior : select
	jQuery(".items").children("div").click(function(e) {
		e.preventDefault();
		jQuery("#details").html("chargement ... ");

		jQuery.post(lang + "/collections/legend.html", {
			reference : jQuery(this).children(".thumbnails").attr("alt")
		}, function(legend) {
			jQuery("#details").html(legend);
		});

		jQuery.post("/collections/extend.html", {
			reference : jQuery(this).children(".thumbnails").attr("alt")
		}, function(extend) {
			jQuery("#showcontainer").html(extend);
		});
	});
});
