$(function(){
	$("img[rel=uga]").live("mouseover",function(){
		var id = $(this).attr("id");
		var no = $(this).attr("class");

		$("#moge").stop().animate({
			opacity: 0,
			fadeOut: "slow",
            fade: 1
		},250,function(){
			$("#moge").animate({
				opacity: 1,
				fadeIn: "slow",
            	fade: 1
			},400);
		}).attr("src","/img/library/girl/"+id+".jpg");
	});

	$("img[rel=uga]").live("mouseout",function(){
		var no = $(this).attr("class");
	});
});