$(function(){
		$("#no1 img").mouseover(function(){
			$("#nbc1").fadeIn(1000);
		});
		$("#no1 img").mouseout(function(){
			$("#nbc1").fadeOut("slow");
		});
		$("#no2 img").mouseover(function(){
			$("#nbc2").fadeIn(1000);
		});
		$("#no2 img").mouseout(function(){
			$("#nbc2").fadeOut("slow");
		});
		$("#no3 img").mouseover(function(){
			$("#nbc3").fadeIn(1000);
		});
		$("#no3 img").mouseout(function(){
			$("#nbc3").fadeOut("slow");
		});
		$("#no4 img").mouseover(function(){
			$("#nbc4").fadeIn(1000);
		});
		$("#no4 img").mouseout(function(){
			$("#nbc4").fadeOut("slow");
		});
		$("#no5 img").mouseover(function(){
			$("#nbc5").fadeIn(1000);
		});
		$("#no5 img").mouseout(function(){
			$("#nbc5").fadeOut("slow");
		});
$("#no1 img").toggle(
        function() {
            $("#nbc1").fadeIn(1000);
        }, function() {
            $("#nbc1").fadeOut("slow");
        }
);
$("#no2 img").toggle(
        function() {
            $("#nbc2").fadeIn(1000);
        }, function() {
            $("#nbc2").fadeOut("slow");
        }
);
$("#no3 img").toggle(
        function() {
            $("#nbc3").fadeIn(1000);
        }, function() {
            $("#nbc3").fadeOut("slow");
        }
);
$("#no4 img").toggle(
        function() {
            $("#nbc4").fadeIn(1000);
        }, function() {
            $("#nbc4").fadeOut("slow");
        }
);
$("#no5 img").toggle(
        function() {
            $("#nbc5").fadeIn(1000);
        }, function() {
            $("#nbc5").fadeOut("slow");
        }
);
});
