jQuery('document').ready(function() {

	jQuery('.slider.captionfull, .slider-nav').hover(function(){  
        jQuery(".caption").stop().animate({bottom:'12px'},{queue:false,duration:500});  
    }, function() {  
        jQuery(".caption").stop().animate({bottom:'-200px'},{queue:false,duration:500});  
    }); 
    
    jQuery('#slider').hover(function() {
    	jQuery('#slider .slider-nav').fadeIn('fast');
    }, function() {
    	jQuery('#slider .slider-nav').fadeOut('fast');
    });
    
	jQuery('div.slider-wrap').cycle({ 
		fx:     'fade', 
		speed:  'slow', 
		timeout: 5000, 
    	next:   'a.next', 
       	prev:   'a.prev' 
   	});
    
});


