
/* ----------------------------------------------------------------------- */
/* portfolio_tag.php ----------------------------------------------------- */

// var pour définir les img à inclure ds le css
var path = "http://thomas.hicke.free.fr/image/";
var bg_img_close = "url("+path+"close.gif) right top no-repeat";
var bg_img_open = "url("+path+"open.gif) right top no-repeat";

// montrer/masquer le contenu d'un élément
// et changer le 'bouton' en fonction
$(document).ready(function() {

	$('.hr_like').hide();
	$('.img_full').hide();
	
	 // bt 'img'
	$('.bt_slide').click(function(){	
		if( ($(this).next('div.infos_projet').next('div.hr_like')).is(":hidden") ){
			$(this).next('div.infos_projet').next('div.hr_like').slideDown("slow");
			$(this).next('div.infos_projet').next('div.hr_like').next('div.img_full').slideDown("slow");
			$(this).css('background',bg_img_close);
		}else{	
			$(this).next('div.infos_projet').next('div.hr_like').hide();
			$(this).next('div.infos_projet').next('div.hr_like').next('div.img_full').hide();
			$(this).css('background',bg_img_open);
		}		
	});
	
	 // bt 'thumb'
	$('.img_thumb').click(function(){	
		if( ($(this).next('div.bt_slide').next('div.infos_projet').next('div.hr_like')).is(":hidden") ){
			$(this).next('div.bt_slide').next('div.infos_projet').next('div.hr_like').slideDown("slow");
			$(this).next('div.bt_slide').next('div.infos_projet').next('div.hr_like').next('div.img_full').slideDown("slow");
			$(this).next('div.bt_slide').css('background',bg_img_close);
		}else{	
			$(this).next('div.bt_slide').next('div.infos_projet').next('div.hr_like').hide();
			$(this).next('div.bt_slide').next('div.infos_projet').next('div.hr_like').next('div.img_full').hide();
			$(this).next('div.bt_slide').css('background',bg_img_open);
		}		
	});  
   
   // bt 'voir tout'
	$('.bt_slide_all').click(function(){	
		if( $("ul#list li div.hr_like").is(":hidden") ){
			$('ul#list li div.hr_like').slideDown("slow");
			$('ul#list li div.img_full ').slideDown("slow");
			$(this).css('background',bg_img_close);
			$('ul#list li div.bt_slide').css('background',bg_img_close);
		}else{	
			$('ul#list li div.hr_like').hide();
			$('ul#list li div.img_full ').hide();	
			$(this).css('background',bg_img_open);
			$('ul#list li div.bt_slide').css('background',bg_img_open);
		}
	});
   
});
