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

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

$(document).ready(function() { 
 
 $('.single').hover(function() {
  $('.img',this).animate({ 'opacity' : '0.6'}, 200);
  $('.overlay-with',this).animate({ 'opacity' : '0'}, 100);
  $('.title',this).css({ 'z-index' : '10'});
 
},
function() {  	
 $('.img',this).animate({ 'opacity' : '1'}, 200);
 $('.overlay-with',this).animate({ 'opacity' : '1'}, 500);
	$('.title',this).css({ 'z-index' : '-1'});
	 
});	

$('#client_name a').append('target="_blank"');
 

 
});
