$(function() {
	var loadContent = function(menu) {
		$.ajax({
			type: "GET",
			url: "content/" + menu + ".html",
			dataType: "html",
			cache: false,
			success: function(newhtml){
				$('#content_body').fadeOut('fast', function() {
					$('#content_body').html(newhtml);
					$('#contentBackground').animate({height: $(newhtml + '#content').height() + 120}, 'fast',function() {
						$('#content_body').fadeIn('fast');
					});
					
				});
			}
		  });	
	}
	
	Galleria.loadTheme('js/themes/classic/galleria.classic.min.js');
	
	$('.menu').click(function(){
		if($(this).hasClass('menuhere') == false) {
			$('.menuhere').removeClass('menuhere').addClass('menu');
			$(this).removeClass('menu').addClass('menuhere');
			loadContent($(this).attr('id'));
		}
	});
	
	
	
	$('.link').click(function() {
		window.open($(this).attr('href'), $(this).attr('title'));	
	});
	
	$('#home').removeClass('menu').addClass('menuhere');
	
	loadContent('home');
});

