// JavaScript Document


jQuery(document).ready(function() {




    $('#slides').cycle({
        fx: 'fade',
        speed: 'slow',
        timeout: 8000



    });



    $(".sidenav a").hover(

	   function() {
	       $(this).animate({ paddingLeft: "10px" }, { queue: false, duration: 300 });
	   },
		function() {
		    $(this).animate({ paddingLeft: "0px" }, { queue: false, duration: 300 });
		}

    );


    $('#accordion .head').click(function() {
        $(this).next().toggle('slow');
        $(this).toggleClass('selected');
        return false;

    })
//.next().hide();






});







