$(function(){
	
	/***************************************************
	****************************************************
	******************************************* FACE BOX
	****************************************************
	****************************************************/
		
		$('a[rel="facebox"]').lightBox();
		
	/***************************************************
	****************************************************
	****************************************** ACCORDEON
	****************************************************
	****************************************************/
	
	$(".accordeon li h3 a").click(function(){
		$(".accordeon li .accordeon-content").slideUp('slow');
		$(this).parent().parent().find('.accordeon-content').slideDown('slow');
	});

	$('a[rel="clickbox"]').click(function(){
		var img = $(this).attr('href');
		$("#clickbox img").attr('src',img);
		
		return false;
	});

});//End document ready


