/**
 * -----------------------------------------------------------------------------
 * Fonctions utilitaires propres au site.
 * @author Dreamclic <contact@dreamclic.com>
 * @version 3.0 - oct 2010
 * -----------------------------------------------------------------------------
 */

function wst_animerOverItem(image){
	if(!image.animationEnCours){
		image.animationEnCours=true;
		$(image).animate({
			"margin-top": "-=10px"
		},200, "swing").animate({
			"margin-top": "+=10px"
		},100, "swing",function(){
			image.animationEnCours=false;
		});
	}
}

$(document).ready(function(){
	$("#texte table td h3 a,#texte table td p a").mouseover(function(){
		wst_animerOverItem($(this).parents("td").find("img").get(0));
	});
});
