// JavaScript Document
//hover link
$(function() {
	$(".post_content h3 a,.post_content a,.released .more-link, ").hover(function() {
        $el = $(this);
        $el.stop().animate({ backgroundPosition: "(0px 0px)", color: "#FFF" }, 100); // マウスオーバー時の文字色とアニメーションの速さ
    }, function() {
        $el = $(this);
        $el.stop().animate({ backgroundPosition: "(0px 100px)", color: "#e71873" }, 500); // マウスオーバー後の文字色とアニメーションの速さ
     
    });
    $("#side ul li a").hover(function() {
        $el = $(this);
        $el.stop().animate({ backgroundPosition: "(0px 0px)", color: "#fff" }, 100); // マウスオーバー時の文字色とアニメーションの速さ
    }, function() {
        $el = $(this);
        $el.stop().animate({ backgroundPosition: "(0px 100px)", color: "#fff" }, 500); // マウスオーバー後の文字色とアニメーションの速さ
     
    });
	$(".released h3 a").hover(function() {
        $el = $(this);
        $el.stop().animate({ backgroundPosition: "(0px 0px)", color: "#e71873" }, 100); // マウスオーバー時の文字色とアニメーションの速さ
    }, function() {
        $el = $(this);
        $el.stop().animate({ backgroundPosition: "(0px 100px)", color: "#FFF" }, 500); // マウスオーバー後の文字色とアニメーションの速さ
     
    });
});
// JavaScript Document

