	
/* Start Galleria
----------------------------------------------*/
var j = jQuery.noConflict();
j(document).ready(function($){

    Galleria.loadTheme('/global/js/galleria/themes/asid/galleria.asid.min.js');
	$('#gallery a').each(function(){
		$(this).children('img').attr('alt',$(this).attr('title'));
	});
    $('#gallery div').galleria({
		autoplay: 6000,
		carousel: false,
		thumbnails: false,
		idleMode: false,
		history: true,
        width: 500,
        height: 330,
		imageCrop: true
    });

});


