$(document).ready(function(){
	
	// accordion ***************************************************************
	if (typeof $().accordion == 'function') {
		$('ul.accordion').accordion({
			active: ".selected",
			autoHeight: false,
			header: ".opener",
			collapsible: true,
			event: "click"
		});
	}
	
	// gallery ***************************************************************
	function gallerysInit() {
		if (typeof $().slideShow == 'function') {
			$('div.gallery').slideShow({		
				slideEl:'ul.fade li',		
				linkNext:'li.next a',		
				linkPrev:'li.prew a',		
				linkPause:false,		
				numElementLink:false,		
				duration:600,		
				autoSlideShow:true,		
				switchTime:5000
			});
		}
	}
	setTimeout(function(){gallerysInit()}, 600);
	
	// image preload ***********************************************************
	var _preloadEl = $('span.image-preload');
	var _image = [];
	_preloadEl.each(function(i,_el){
		var _this = this;
		_image[i] = new Image();
		_image[i].onload = function(){
			$(_this).replaceWith('<img src="'+this.src+'" alt="" />');
			_image[i].onload = null;
		}
		_image[i].src = $(this).attr('title');
	});
	
});

