// JavaScript Document

$(document).ready(function() {
	$('a.right').hover(function() { //mouse in
		$(this).animate({ paddingLeft: '10px' }, 300);
	}, function() { //mouse out
		$(this).animate({ paddingLeft: 0 }, 300);
	});
});

$(document).ready(function() {
	$('a.left').hover(function() { //mouse in
		$(this).animate({ paddingRight: '10px' }, 300);
	}, function() { //mouse out
		$(this).animate({ paddingRight: 0 }, 300);
	});
});

