
function show_hover_infos( id ) {
	$('hover_infos_'+id).style.display = 'block';
	$('product_'+id).removeClassName( 'borderwhite' );
	$('product_'+id).addClassName( 'borderyellow' );
}

function hide_hover_infos( id ) {
	$('hover_infos_'+id).style.display = 'none';
	$('product_'+id).removeClassName( 'borderyellow' );
	$('product_'+id).addClassName( 'borderwhite' );
}


