// JavaScript Document
$(function(){
    $('#colizq a').hover(function() { //mouse in   
        $(this).animate({ paddingLeft: '20px', width: '240px' }, 100);
		$(this).css({'background-color': '#500'});
    }, function() { //mouse out   
        $(this).animate({ paddingLeft: 5 }, 100);
		$(this).css({'background-color': ''});
    });   
});

