(function($) {
$(function(){
	$(".thumbs").mouseover(function(){
		var largePath = $(this).attr("src");
		var largeAlt = $(this).attr("title");
		
		if($("#largeImg").attr('src') != largePath){
			$("#largeImg").hide().fadeIn('slow').attr({ src: largePath, alt: largeAlt });
		}
		return false;
	});
	
	$('#Tips area').hover(function(){
		var inText = $(this).attr('alt').split("｜");
		$('#tips_view div.to02:first').hide().clone().appendTo('#tips_view').html('<span class="t">'+inText[0]+'</span><br />'+inText[1]).show();
	},
	function(){
		$('#tips_view div.to02:first').show();
		$('#tips_view div.to02:last').remove();
	}
	)
});
})(jQuery);
