$(document).ready(function(){

	$("#slider").show();

	$("#slider").easySlider({
		auto: true,
		continuous: true,
		numeric: false,
		pause: 5000
	});

	$(".clients.home li:nth-child(2n)").addClass("last");
	$(".clients.our-clients li:nth-child(4n)").addClass("last");
	
	      
    $('#nav li').hover(  
        function () {  
            //show its submenu  
            $('ul', this).slideDown(100);  
  
        },   
        function () {  
            //hide its submenu  
            $('ul', this).slideUp(100);           
        }  
    );  
	
});
