$('#nerd li a').hover(
    function() {

        $(this).animate({ color: "#fff"}, 200).
			next().animate({ opacity: .6}, 300).
			end().
			parent().animate({ paddingLeft: ".5em"}, 100);
    },

    function() {
	
		$(this).animate({color: "#E36C1C"}, 100).
			next().animate({ opacity: 0.0}, 100).
			end().
			parent().animate({ paddingLeft: "0em"}, 100);

    }
);

$('#work li a').hover(
    function() {

        $(this).animate({ color: "#fff"}, 200).
			next().animate({ opacity: .6}, 300).
			end().
			parent().animate({ paddingLeft: ".5em"}, 100);
    },

    function() {
	
		$(this).animate({color: "#E36C1C"}, 100).
			next().animate({ opacity: 0.0}, 100).
			end().
			parent().animate({ paddingLeft: "0em"}, 100);

    }
);
