


jQuery(function($){


jQuery(document).ready(function() {

	jQuery("#provisurLinkID img").hover(
		function() {
		jQuery(this).stop().animate({"width": "+=20px",}, "slow");
		},
		function() {
		jQuery(this).stop().animate({"width": "-=20px",}, "slow");
		});
	});

});


