$(document).ready(function() {

	$('#ind-imgs a').hover(

		function() {
			$(this).animate({
				width: "290px"
			},
			300);
		},
		function() {
			$(this).animate({
				width: "122px"
			},
			300);
		}

	);

});