$(document).ready(function(){

    //1237652875123871201293-12470234019274-023-4182-4018-23490182-34018-2390

    $("#sidebar li>a ").hover(function(){

        

        $(this).stop().animate({marginLeft : "10px"},200,"swing");},

        function(){

        $(this).stop().animate({marginLeft : "0px"},200,"swing");}

        

    );

    

    $(".navigation>.alignleft a,.single_alignleft a").hover(function(){

        $(this).stop().animate({marginLeft : "10px"},200,"swing");},

        function(){

        $(this).stop().animate({marginLeft : "0px"},200,"swing");}

        

    );

    

    

    $(".navigation>.alignright a,.single_alignright a").hover(function(){

        $(this).stop().animate({marginRight : "10px"},200,"swing");},

        function(){

        $(this).stop().animate({marginRight : "0px"},200,"swing");}

        

    );

    

    $("#header a,.post a,#footer a").hover(function(){

        $(this).stop().animate({color : "#c60"},200);},

        function(){

        $(this).stop().animate({color : "#930"},200);}

        

    );

    

        $(".postmeta span").hover(function(){

        $(this).stop().animate({backgroundColor : "#dfdfdf"},200);},

        function(){

        $(this).stop().animate({backgroundColor : "#eee"},200);}

        

    );

        

            $("#commentform input[type='submit']").hover(function(){

        $(this).stop().animate({backgroundColor : "#fa5"},200);},

        function(){

        $(this).stop().animate({backgroundColor : "#ddd"},200);}

        

    );



});


