$(document).ready(function(){
	$(".b_menu").live("click",function () {
		var text = $("#html_"+this.id).html();
		$("#currentText").animate({'opacity':'0'},"slow",function(){
			$("#currentText").html( text );
			$('#currentText .scrollPane').jScrollPane({
				scrollbarWidth : 4,
				scrollbarMargin : 10
			});
			$("#currentText").animate({'opacity':'1'},"slow");
		});
		return false;
    });

	$(".logos_div div").click(function () {
		$('.logos_div div').not(this).animate({'opacity':'0.5'},500);
		$(this).animate({'opacity':'1'},500);
		
		var text = $("#html_"+this.id).html();
		$("#currentText").animate({'opacity':'0'},"slow",function(){
			$("#currentText").html( text );
			$('#currentText .scrollPane').jScrollPane({
				scrollbarWidth : 4,
				scrollbarMargin : 10
			});
			$("#currentText").animate({'opacity':'1'},"slow");

			$('#currentText #gallery a').lightBox();
		});
		return false;
    });
});
