$(function(){
	
	/***************************************************
	****************************************************
	******************************************* FACE BOX
	****************************************************
	****************************************************/
		
		jQuery('a[rel*=facebox]').facebox({opacity: 0.7});
		
	/***************************************************
	****************************************************
	****************************************** ACCORDEON
	****************************************************
	****************************************************/
	
	$(".accordeon li h3 a").click(function(){
		$(".accordeon li .accordeon-content").slideUp('slow');
		$(this).parent().parent().find('.accordeon-content').slideDown('slow');
	});
	
	$("#nav li > a").click(function(){
		var uls = $(this).parent();
		if (uls.find('ul').length > 0) {
			$(this).parent().find('ul').slideToggle('slow');
			return false;
		} else {
			$(this).click();
		}
	});


});//End document ready

