$(document).ready(function() {
	
	//Ajout d'une image via clone
	$('.ajoutdiapoimg').click(function(){
		if($('#diapopicformwrap').css('display')!='block'){
			$('#diapopicformwrap').slideDown();
		} else{
			var yourclass=".clonable";  //The class you have used in your form
			var clonecount = $(yourclass).length;  //how many clones do we already have?
			var newid = Number(clonecount) + 1;  //Id of the new clone   
			 
			$(yourclass+":first").fieldclone({//Clone the original elelement
				newid_: newid,  //Id of the new clone, (you can pass your own if you want)
				target_: $(yourclass+":last"),  //where do we insert the clone? (target element)
				insert_: "after",  //where do we insert the clone? (after/before/append/prepend...)
				limit_: 4  //Maximum Number of Clones
			});		
			return false;
		}
	});	
	
	
	//Suppression de la dernière image clonée
	$('.supprdiapoimg').click(function(){
		if($('.clonable').length>1){ $('.clonable:last').remove(); }
		else { $('#diapopicformwrap').slideUp(); }
		return false;
	});
	
	//Carousel
	$('#diaporama').jcarousel();
	//colorobox
	$("a[rel='colorbox']").colorbox({maxWidth: '640px', maxHeight: '640px', scalePhotos: true, scrolling: false});
});
