(function() {

	$(document).ready(function() {
		$('ul.link-list li a').hover(
			function() {
				$(this).animate({paddingLeft:15}, 200, 'linear');
			},
			function() {
				$(this).animate({paddingLeft:5}, 200, 'linear');
			}
		);

		$('a.work-item').hover(
			function() {
				$(this).find('img').animate({marginTop:-10}, 200, 'linear');
			},
			function() {
				$(this).find('img').animate({marginTop:0}, 200, 'linear');
			}
		);
		
	});

})();
