/*
$j(function() {
	// règle la hauteur des deux colonnes principales 
	var height=Math.max($j('#content').height(), $j('#colright').height())+10;
	$j('#colright').each(function() {
		$j(this).css("min-height", height); // Set new height
	});
 });
 */

var $j = jQuery.noConflict();
 
$j(function() {  
	$j('a[rel*=nofollow]').click( function() {  
		window.open(this.href);  
		return false;  
	});  
});