jQuery(document).ready(function(){
	jQuery(".gift").hover(function(){		
		var t = jQuery(this);
		
		if (t.hasClass('.showDescOnLeft')) var leftVal = "-180";
		else	var leftVal = "170";
		
		t.find(".hiddenInfo").stop().animate({
			width: '180',
			left: leftVal
		}, 500);

	}, function(){
		var t = jQuery(this);
		
		if (t.hasClass('.showDescOnLeft')) var leftVal = "-1";
		else	var leftVal = "170";
	
		t.find(".hiddenInfo").stop().animate({
			width: '0',
			left: leftVal
		}, 200);
	})
})