$(document).ready(function() {
    $('#slider_inner').cycle({
		fx:     'fade',
		
		speed: 400, 
		
    prev:   '#prev', 
    next:   '#next', 
	timeout: 5000,
	pager:  '#thumbnav',
	
	
	pagerAnchorBuilder: function(index, el) {
        return '<a href="#"></a>'; 
	},
		
before:  onBefore, 
    after:   onAfter 
	});

	function onBefore() {   	
var title = $('.content',this).html();
      $('.replace').html(title);
   }
function onAfter() { 
  var title = $('.content',this).html();
      $('.replace').html(title);
   }
  
  

  
  $('.single').hover(function() {	
	$('.single-over',this).css({"left" : "0"},150);

},function() {
	
$('.single-over',this).css({"left" : "-240px"},150);

});
 
});
