$(document).ready(function () {
	$('#m1').click(function () {
		$(this).css('background-color','#E9E9E9');
		$(this).css('border-right','1px solid #ccc');
		$("#m2").css('background-color','#DFDFDF');
		$("#m2").css('border-right','0px');
		$("#despre").show();
		$("#galerii").hide();
		return false;
	});
	
	$('#m2').click(function () {
		$(this).css('background-color','#E9E9E9');
		$(this).css('border-right','1px solid #ccc');
		$("#m1").css('background-color','#DFDFDF');
		$("#m1").css('border-right','0px');
		$("#despre").hide();
		$("#galerii").show();
		return false;
	});
	
});