$(document).ready(function(){
	jQuery('li.active').parent('.left_menu').css("display", "block");

	jQuery('.gallery ul li:first-child').addClass('active'); // adds new class name to maintain degradability		
	jQuery('.gallery ul').galleria({
		history   : false, // activates the history object for bookmarking, back-button etc.
		clickNext : false, // helper for making the image clickable
		insert    : '#main_image' // the containing selector for our main image. 
							   // If not found or undefined (like here), galleria will create a container 
							   // before the ul with the class .galleria_container (see CSS)
	});

	jQuery('ul.galleria img').each(function(index) {
		jQuery.preloadImages($(this).attr("rel"));
	  });
})


jQuery.preloadImages = function () {
    var images = (typeof arguments[0] == 'object') ? arguments[0] : arguments;
    for (var i = 0; i < images.length; i++) {
        jQuery("<img>").attr("src", images[i]);
    }

}

hs.graphicsDir = 'http://bijous.ru/images/graphics/';
hs.creditsText='';
hs.loadingText='Загрузка'




