// JavaScript Document

jQuery(document).ready(function() {


 $('#slides').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 4000

	});


  
      $(".sidenav a").hover(
						   
	   function () {
      $(this).animate({paddingLeft: "28px"}, {queue:false, duration:300});
						   },
		function () {
      $(this).animate({paddingLeft: "18px"}, {queue:false, duration:300});
						   }				   
						   
    );


});





