
$(document).ready(function() {

	$("fieldset.prenom").hide();

	// PNG FIX
	$(document).pngFix(); 

	// SLIDE-TOP
	$('#slide-top').hide().cycle({ fx:'fade', speed:400, timeout:8000, pause: 1 }).show();
	
	// LAST SHOW
	$("#aside").find(".last-show").find(".slide").cycle({ fx:'scrollHorz', speed:600, timeout:4000, pause: 1, next:"#slide-next", prev:"#slide-prev" });
	
	// LINK-LIST
	$("#aside").find(".link-list").find("img").hover(function(){
		var description = $(this).attr("title");
		var descElem = "<span class=\"desc\">"+description+"<span class=\"tri-corner\"></span></span>";
		$(this).parent().append(descElem);
		$(this).attr("title", "");
	}, function(){
		var description = $(this).parent().find(".desc").text();
		$(this).parent().find(".desc").remove();
		$(this).attr("title", description);
	});
	
	// COMMENTS
	$('.top-comments').next('div').hide();
	$('.comments form').hide();
	
		// dˇplier/fermer les commentaires
	$('.top-comments .num-comments').click(function(){
		var numc = $(this).text();
		if(numc == 'aucun commentaire'){
			if($(this).parent().next('div').hasClass('opened')){
				$(this).parent().next('div').removeClass('opened').slideUp("fast");
				$(this).parent().next('div').find('form').removeClass('opened').slideUp('fast');
			} else {
				$(this).parent().next('div').addClass('opened').slideDown("fast");
				$(this).parent().next('div').find('form').addClass('opened').slideDown('fast');
			}
		} else {
			if($(this).parent().next('div').hasClass('opened')){
				$(this).parent().next('div').removeClass('opened').slideUp("fast");
				$(this).parent().next('div').find('form').removeClass('opened').slideUp('fast');
			} else {
				$(this).parent().next('div').addClass('opened').slideDown("fast");
			}
		}
	});
	
		// dˇplier/fermer le formulaire
	$('.comments-post-title').click(function(){
		if($(this).next('form').hasClass('opened')){
			$(this).next('form').removeClass('opened').slideUp("fast");
		} else {
			$(this).next('form').addClass('opened').slideDown("fast");
		}
	});
	
		// bouton add-comment
	$('.top-comments .add-comment').click(function(){
		if($(this).parent().next('div').hasClass('opened')){
		} else {
			$(this).parent().next('div').addClass('opened');
			$(this).parent().next('div').show();
		}
		if($(this).parent().next('div').find('form').hasClass('opened')){
		} else {
			$(this).parent().next('div').find('form').addClass('opened');
			$(this).parent().next('div').find('form').show();
		}
	});
	// ARCHIVE CYCLE
	$('.gallery').cycle({ fx:'scrollHorz', speed:600, timeout:6000, pause: 1, next:'#suiv_galbtn', prev:'#prec_galbtn'});
	
	
	$('#comment-avatars-select-wrapper img').click(function(){
		$(this).parent().find('.selected').removeClass('selected').prev().removeAttr('checked');
		//$(this).parent().find('[checked=checked]').removeAttr('checked');
		$(this).addClass('selected').prev().attr("checked","checked");
		//$(this).prev().attr('checked', 'checked');
	});
});
