

$('document').ready(function() {

	// le menu qui se retrouve dans les pages de listing
	try {
		$('.topcats_names_l').hover(
		function() { this.className = 'topcats_names_l_over'; },
		function() { this.className = 'topcats_names_l'; }
		);

		$('.topcats_names_l').click(function(){
			window.open($(this).attr('reflink'), '_self');
			return false;
		});
		
	} catch (ex) {
		// this is just in case some random page ends up without the buttons
	}


});





