(function ($) {
	$(function() {
		$('.vote-link').hover(
			function() {
				$(this).stop(true, false).animate({width: 140}, 400);
			}, 
			function() {
				$(this).stop(true, false).animate({width: 43}, 400);
			}
		);
		$('.vote-link').click(
			function() {
				$(this).stop(true, false).animate({width: 43}, 400);
			}
		);
	});
}(jQuery));;

