$(function() {
	
	$('#valentine').hover(function(){
		
		$(this).stop().animate({opacity: .5, left:'30'});
		
	}, function() {
		
		$(this).stop().animate({opacity: 1, left:'0'});
		
	});	
});
