$(document).ready(function(){
	if ($('body#homepage').length > 0) {
		$('#gallery').animate({ opacity: 0 },0);
		$('#container').append('<img src="/assets/images/loading.gif" class="loading"/>');
	}
	if ($('body#studios').length > 0) {
		$('h2').each(function() {
	    string = $(this).text();
	    filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
	    $(this).html('<img src="/public/images/text-image/white/'+filename+'.gif" alt="'+string+'"/>');
	  });
	}
  $('#level1 a').each(function() {
    string = $(this).text();
    filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
    $(this).addClass(filename);
  });
	$(window).load(function() {
		if ($('body#homepage').length > 0) {
			$('#gallery').animate({ opacity: 1 },3000);
			$('.loading').animate({ opacity: 0 },3000);
		}
		$('#gallery').cycle({
			fx:     'fade', 
			speed:  3500,
			pause: 1
		});
	});
});