﻿
$(document).ready(function() {
    $('.cr2 a').hover(function() {
        $(this).stop().animate({ 'paddingLeft': '5px' }, "normal");
    }, function() {
        $(this).stop().animate({ 'paddingLeft': '0px' }, 'normal');
    });
    $('#c2_right a').hover(function() {
        $(this).stop().animate({ 'paddingLeft': '5px' }, "normal");
    }, function() {
        $(this).stop().animate({ 'paddingLeft': '0px' }, 'normal');
    });
    $('.cb03').hover(function() {
        $(this).stop().animate({ 'paddingLeft': '5px' }, "normal");
    }, function() {
        $(this).stop().animate({ 'paddingLeft': '0px' }, 'normal');
    });
    $('.cb04').hover(function() {
        $(this).stop().animate({ 'marginTop': '-2px' }, "normal");
    }, function() {
        $(this).stop().animate({ 'marginTop': '0px' }, 'normal');
    });
    $('.cbr04').hover(function() {
        $(this).stop().animate({ 'marginTop': '-2px' }, "normal");
    }, function() {
        $(this).stop().animate({ 'marginTop': '0px' }, 'normal');
    });
    $('.cbr005 a').hover(function() {
        $(this).stop().animate({ 'marginTop': '-5px' }, "normal");
    }, function() {
        $(this).stop().animate({ 'marginTop': '0px' }, 'normal');
    });
    $('.step').hover(function() {
        $(this).stop().animate({ 'marginTop': '-5px' }, "normal");
    }, function() {
        $(this).stop().animate({ 'marginTop': '0px' }, 'normal');
    });


});
    

