$(function () {
		
    
		$('body').append('<div class="tips"><span></span><img src="/common/i_arrow.png" width="9" height="16" alt="↓" /></div>');
    $('a.uc').mouseover(function () {
        $('div.tips span').text('現在準備中です');
        $('div.tips:not(:animated)').show();
    }).mousemove(function (e) {
        $('div.tips').css({
            top: e.pageY - 40 + 'px',
            left: e.pageX - 12 + 'px'
        })
    }).mouseout(function () {
        $('div.tips:not(:animated)').hide();
    }).click(function () {
        return false;
    });
		

    $("img.shakeItem").mouseover(function () {
        shake($(this));
    });
		
		function shake(obj) {
        var defW = parseFloat(obj.attr('width'));
        var defH = parseFloat(obj.attr('height'));
        $(obj, ":not(:animated)").css({
            width: defW + 6,
            height: defH + 6
        }).animate({
            width: defW,
            height: defH
        }, {
            duration: 800,
            easing: "easeOutElastic"
        });
    }

		
});

