// Homepage Accordion

$(document).ready(function() {
	$('.accordion').hSlides({
		totalWidth: 990, 
		totalHeight: 325, 
		minPanelWidth: 37,
		maxPanelWidth: 837,
		activeClass: 'active',
		speed: 300,
		eventHandler: 'click'
	});
	setTimeout(function(){
		$(".accContent").fadeIn(100, function () {
	});
	}, 3000);
	setTimeout(function(){
		$(".accordion li").fadeIn(100, function () {
	});
	}, 2000);
});
