$(function(){
	$('#titles div a').click(function(){
		var id = $(this).attr('name');

		if($('#'+id).is(':hidden')){
			$('.article').fadeOut('normal');
			$('#'+id).fadeIn('normal');
		}else{ $('.article').fadeOut('normal'); }
		return false;
	});
	
	$('#reviews ul li a').click(function(){
		var id = $(this).attr('name');
		$('#reviews ul li a').removeClass('selected');
		$(this).addClass('selected');

		$('.review').hide();
		$('#'+id).fadeIn('normal');
		return false;
	});
	
	$('.article').click( function(){$(this).fadeOut('normal');} );
	
	$('#main-menu ul li').removeClass('selected');
	$('#left-section').load('include/menu.html', function(response, status, xhr){ $('.submenu').hide(); menuSelector(); });
	$('#logo').load('include/logo.html'); 
	
})
