jQuery(document).ready(function(){

	if (typeof jQuery().slideShow == 'function') {
		jQuery('div.galleria-holder').slideShow({
			slideEl:'div.galleria-container',
			linkNext:'a.g-next',
			linkPrev:'a.g-prev',
			numElementLink:'ul.galleria a',
			duration:500
		})
	}
	if (randomImage) {
		var _random = Math.floor(Math.random() * randomImage.length);
		jQuery('div.ramdom-img img').attr('src',randomImage[_random]);
	}
});
function initPage()
{
    jQuery('#slide-1').fadeGallery({
	timeOut: 5000 // speed
    });
}
if (window.addEventListener)
	window.addEventListener("load", initPage, false);
else if (window.attachEvent)
	window.attachEvent("onload", initPage);
