$(document).ready(function() {
	$('div#a').hover(
		function() {
			$('#c').fadeIn('fast');
		},
		function() {
			$('#c').fadeOut('fast');
		}
	);			
		
	$('.show1').mouseover(
		function() {
			$('.all').hide();
			$('.no1').show();
		}
	);

	$('.show2').mouseover(
		function() {
			$('.all').hide();		
			$('.no2').show();
		}
	);
	
	$('.show3').mouseover(
		function() {
			$('.all').hide();
			$('.no3').show();
		}
	);		
});