$(document).ready(function(){
		
	$('.list li').hover(
			function(e){
				$(this)
					.find('a')
						.toggleClass('cblue',true)
						.end()
					.find('.infohover')
						.toggle(true);
	},
	function(e){
		$(this)
			.find('a')
				.toggleClass('cblue',false)
				.end()
			.find('.infohover')
				.toggle(false);
	});
	
	$('.thumb1').hover(function(){
		$('.img2').hide();
		$('.img3').hide();
		$('.img1').show();
	});
	
	$('.thumb2').hover(function(){
		$('.img1').hide();
		$('.img3').hide();
		$('.img2').show();
	});
	
	$('.thumb3').hover(function(){
		$('.img1').hide();
		$('.img2').hide();
		$('.img3').show();
	});

});
