$(function(){
    $("#navi a").click(function(){
        $("#main img").before("<img src='"+$(this).attr("href")+"' alt=''>");
        $("#main img:last").fadeOut("1000",function(){
            $(this).remove()
        });
        return false;
    })
})


$(function(){
	$("#navi img").mouseover(function(){
		$(this).css("border","3px solid #390");	
							
	})
	$("#navi img").mouseout(function(){
		$(this).css("border","3px solid #fff");	
							
	})
})

$(function(){
	$("#navi img").click(function(){
		$(this).css("border","3px solid #fff");	
							
	})
})
