$(function(){

// !quick visual menu change
	$('#navbar li a').click(function () {
	
		self = $(this);
		
		if (self.hasClass('active')) {
			return false;
		}
		
		$('.active').removeClass('active');
		$(this).addClass('active');

	});
	
// !gallerie
	if($('#content').hasClass('galerie')) {
		$("a[rel='colorbox']").colorbox({transition:"fade"});
	}
	
// !demo
	if($('#content').hasClass('demo')) {
		$("a[rel='colorbox']").colorbox({transition:"fade", iframe:true, width:610, height:370});
	}
	
// !fanecke
	if($('#content').hasClass('fanecke')) {
		$("a[rel='colorbox']").colorbox({iframe:true, width:480, height:600});
	}

});
