$(function(){
	// =========
	// = HOVER =
	// =========
	$(".bloc_texte tr").hover(
		function() {
			$(this).addClass("hover");
		},
		function() {
			$(this).removeClass("hover");
		}
	);


	// ==================
	// = CLICK A et IMG =
	// ==================
	$(".bloc_texte tr td a").click(function() {
		var info = $(this).children('img').attr('alt');
		if ( info == undefined ){
			info = this.innerHTML;
		}
		return redirect_to_perkins(this.href, info);
	});

});

// ===============
// = REDIRECTION =
// ===============
function redirect_to_perkins(lien, produit){
	window.open(cc +"produits/index2.php?href="+ lien +"&info="+ produit);
	return false;
}

