$(function(){
	
	
	enterFunction = function(){
		$(this).html('ACTIVE');
	}
	leaveFunction = function(){
		$(this).html('inactive');
	}
	$('.accordion').hSlides({
		totalWidth: 638, 
		totalHeight: 262, 
		minPanelWidth: 28, 
		maxPanelWidth: 579,
		panelPositioning: 'bottom'
	});
	// $('.accordion2').hSlides({
	// 	totalWidth: 305, 
	// 	totalHeight: 200, 
	// 	minPanelWidth: 27, 
	// 	maxPanelWidth: 200,
	// 	activeClass: 'active',
	// 	speed: 1500
	// });
	// $('.accordion3').hSlides({
	// 	totalWidth: 730, 
	// 	totalHeight: 140, 
	// 	minPanelWidth: 77, 
	// 	maxPanelWidth: 425,
	// 	midPanelWidth: 150,
	// 	easing: 'easeOutBounce',
	// 	sensitivity: 1,   
	// 	interval: 50,
	// 	timeout: 100,
	// 	onEnter: enterFunction,
	// 	onLeave: leaveFunction
	// });
	// $('.accordion4').hSlides({
	// 	totalWidth: 730, 
	// 	totalHeight: 140, 
	// 	minPanelWidth: 77, 
	// 	maxPanelWidth: 425,
	// 	panelPositioning: 'bottom',
	// 	eventHandler: 'hover',
	// 	panelSelector: 'span',
	// 	activeClass: 'active_click'
	// });
}
);