var _queue = _queue || [];

_queue.push(['General', function(){

	var objanimation = {
		duration : 500,
		transition : 'quad:in:out'
	}
	
	var expand = new EE.UI.Expandables({
		index: 0,
		togglers: 'div.expandable-toggle',
		blocks: 'div.expandable-block',
		cssactiveblock: 'active-block',
		cssactivetoggle: 'active-toggle',
		morph: objanimation
	});

	var tabs = new EE.UI.Tabs({
		toggle: true,
		togglers: '.tab-magenta',
		blocks: '.tabcontent-magenta',
		csson: 'onstyle',
		cssoff: 'offstyle',
		index: 0
	});
	
	var productOverview = new EE.UI.SimpleGallery({
		index : 0,
		togglers : '#product-overview-thumbs a',
		blocks : '#product-overview-image img',
		tween : objanimation
	});
	
	var togglers = new EE.UI.Togglers({
		toggle: true,
		togglers: '.toggler',
		blocks: '.block',
		csson: 'onstyle',
		cssoff: 'offstyle'
	});

}])

