$(document).ready(function() {

// Animate buttons, move reflection and fade

$(".slideinfo").hover(function() {
    $(this).stop().animate({ marginTop: "0px" }, 300);
	    $(this).parent().find("div.s-num").stop().animate({ marginBottom: "0" }, 500);
	    $(this).parent().find("a.icon").stop().animate({ marginTop: "0", opacity: 0 }, 300);		
	},function(){
	    $(this).stop().animate({ marginTop: "0px" }, 300);
	    $(this).parent().find("div.s-num").stop().animate({ marginBottom: "0px" }, 500);
	    $(this).parent().find("a.icon").stop().animate({ marginTop: "0px", opacity: 1 }, 300);			
	});
});
 
	$((function(){ 
		enterFunction = function(){
			$(this).html('ACTIVE');
		}
		leaveFunction = function(){
			$(this).html('inactive');
		}

		$('.accordion1').hSlides({
			totalWidth: 884, 
			totalHeight: 296, 
			minPanelWidth: 86, 
			eventHandler: 'hover',
			maxPanelWidth: 541,
			activeClass: 'active'

		});
		}
)); 