/**
 * @author ALI PAMENARI
 */
$(document).ready(function(){
    $("#social-bookmark ul li").mouseover(function(){
        $(this).animate({
            top: "-5px"
        }, 'fast').css({
            position: "relative"
        });
    });
    $("#social-bookmark ul li").mouseout(function(){
        $(this).animate({
            top: "0px"
        }, 'fast').css({
            position: "relative"
        });
    });
    $(".col-left-center-center li").hover(function(){
        $(this).animate({
            right: "8px"
        }, 'fast').css({
            position: "relative"
        });
    }, function(){
        $(this).animate({
            right: "0px"
        }, 'fast').css({
            position: "relative"
        });
    });
    $("#page_archive li").hover(function(){
        $(this).animate({
            right: "8px"
        }, 'fast').css({
            position: "relative"
        });
    }, function(){
        $(this).animate({
            right: "0px"
        }, 'fast').css({
            position: "relative"
        });
    });    
});

