$(document).ready(function() {

    $("table tr:nth-child(even)").not('.heading').addClass("striped");
    
    $('#ContactIndexForm fieldset .required label').append('<span class="required-field">&nbsp;*</span>');
    
    $('#column .block-navigation .menu ul li').each(function() {
        
        $(this).hover(function() {
            $(this).children('a').animate({paddingLeft:25},{duration:200,queue:false});
        },function() {
            $(this).children('a').animate({paddingLeft:10},{duration:200,queue:false});
        });
        
    });
    
});
