$(document).ready(function() {

	var min = 0;



	
	
	$('#nav').corner();
	$('.home #textebg').corner();
	$('.home #gallery').corner();
	$('#texte').corner();
	$('.news').corner();
	$('#facebook').corner();
	

	
	//Sidebar Accordion Menu:
		
		$("#sidebar li ul").hide(); // Hide all sub menus
		$("#sidebar li a.current").parent().parent().parent().find("ul").slideToggle("slow"); // Slide down the current menu item's sub menu
		
		$("#sidebar li a.top-item").click( // When a top menu item is clicked...
			function () {
				$(this).parent().siblings().find("ul").slideUp("normal"); // Slide up all sub menus except the one clicked
				$(this).next().slideToggle("normal"); // Slide down the clicked sub menu
				return false;
			}
		);
		
		$("#sidebar li a.no-submenu").click( // When a menu item with no sub menu is clicked...
			function () {
				window.location.href=(this.href); // Just open the link instead of a sub menu
				return false;
			}
		); 

    // Sidebar Accordion Menu Hover Effect:
		
		$("#sidebar li .top-item").hover(
			function () {
				$(this).stop().animate({ paddingRight: "35px" }, 400);
			}, 
			function () {
				$(this).stop().animate({ paddingRight: "20px" });
			}
		);
	

			
	
	
	$(function(){
		$('#feissons_gallery img:gt(0)').hide();
		setInterval(function(){$('#feissons_gallery :first-child').fadeOut().next('img').fadeIn().end().appendTo('#feissons_gallery');}, 6000);
	});


});
