//Forest View Scripting



$(document).ready(function() {
    
    //header highlight
    $("#head_img").hover(function(){
        
        $(this).fadeTo("slow", 0.0); 
        
    },function(){
        
        $(this).fadeTo("slow", 1.0); 
        
    });
    
    //slideshow
    $('#slideshow').cycle({ 
        fx: 'fade',
        speed: 2000,
   	    timeout: 6000,
        next: '#next', 
        prev: '#prev'
    });
    
    $('#home_slide').cycle({ 
        fx: 'fade',
        speed: 2000,
   	timeout: 5000
    });
    
});




