// Accordion
$(function() {
	
	
	var $a = $('.accordion');
	$a.hSlides({
		totalWidth: 718,
		totalHeight: 226,
		minPanelWidth: 36,
		maxPanelWidth: 474,
		interval: 20,
		timeout: 0,
		sensitivity: 30,
		speed: 330,
		panelPositioning: 'bottom',
		eventHandler: 'hover'
	});
	
	$('img', $a).each(function(i) {
		this.decorate = function() {
			var shape = new ictinus.Shape("m87,1 Q99,1 99,13 L99,87 Q99,99 87,99 L1,99 L1,1 L87,1");
			shape.setScaleGrid(15, 85, 15, 85);
			shape.updateSizeBy(this);
			shape.decorate(this);
		}
		if(!this.complete || typeof this.naturalWidth != "undefined" && this.naturalWidth == 0) {
			$(this).load(function() {
				this.decorate();
			});
		} else {
			this.decorate();
		}
	});
});
