// JavaScript Document
		$(document).ready(function() {
$('a').hover(function() { //mouse in
$(this).animate({ paddingTop: '25px',paddingBottom:'15px' },600);
}, function() { //mouse out
$(this).animate({ paddingTop: '8px',paddingBottom:'0px'}, 400);
});
});
