$(document).ready(function() {
    $("#wrapper a").addClass("nohover");
    $("#wrapper a").hover(function() {
        var rightWidth = parseInt($(this).parent().find(".header").css("width"));
        $(this).animate({width: (rightWidth+50)+'px'}, 100);
    }, function() {
        var rightWidth = parseInt($(this).parent().find(".header").css("width"));
        $(this).animate({width: (rightWidth)+'px'}, 100);
    });
    
    $(".group").hover(function() {
        $(this).find(".header").animate({backgroundColor: '#ffcc6f'}, 100);
    }, function() {
        $(this).find(".header").animate({backgroundColor: '#aabfff'}, 100);
    });
    
    var name="ruddzw";
    $("#email").html(name + "@gmail.com").attr("href", "mailto:"+name+"@gmail.com");
});