$(document).ready(function(){
   
   $('.box').find('.text').css('cursor','pointer').click(function() {
      window.location = $(this).parent().find('h3 a').attr('href');
   });
   
   $('.box').hSlides({
				totalWidth: 790, 
				totalHeight: 250, 
				minPanelWidth: 110, 
				maxPanelWidth: 350,
				midPanelWidth: 158,
				easing: 'easeInOutCirc',
				panelSelector: 'div',
				interval: 20,
				timeout: 400,
                speed:200,
                eventHandler: 'hover',
                onEnter: function() {
                    $(this).find('.text').css({'display':'block','opacity': 0.5}).animate({left:'120px'}, 500, 'easeOutCirc');
                    $('.box').find('h3 a').stop().animate({width:'110px'}, 500, 'easeOutCirc');
                    $(this).find('h3 a').addClass('selected');
                    //$(this).find('h3').addClass('selected').fadeTo(300,1).animate({marginTop:'10px'}, 300, 'easeOutCirc');
                    
                },
                onLeave: function() {
                    $(this).find('.text').stop().animate({left:'400px'}, 500, 'easeOutCirc');
                    $('.box').find('h3 a').stop().animate({width:'158px'}, 500, 'easeOutCirc');
                    //$(this).find('h3').animate({marginTop:'100px'}, 300, 'easeOutCirc');
                    $(this).find('h3 a').removeClass('selected');
                }

			});
 
    
});