


<!-- Brochure Preview Slider -->


$(function() {
    var _active = null; 
    var _hmax = 120; 
    var _hmin = 22; 
	
    $(".brochures li").each(function(){ 
        $(this).hover(
		    
            function(){ 
                $(this).animate({height: _hmax+"px"}, {queue:false, duration:300 }); 
                _active = $(this); 
  
			},
            function() { 
                $(_active).stop().animate({height: _hmin+"px"}, {queue:false, duration:300}); 
            } 
        );
    }); 
});

<!-- End Brochure Preview Slider -->

