// JavaScript Document

/*quand la sourit est sur le bouton*/
function ovMenu(idITM,typ){
	if (typ == "SS"){
		$('#'+idITM).removeClass('divCenterUPsmall');
		$('#'+idITM).addClass('divCenterOVsmall');
	}
	if (typ == "BB"){
		$('#'+idITM).removeClass('divCenterUPbig');
		$('#'+idITM).addClass('divCenterOVbig');
	}
}

/*quand la sourit n'est plus sur le bouton*/
function OutMenu(idITM,typ){
	if (typ == "SS"){
		$('#'+idITM).removeClass('divCenterOVsmall')
		$('#'+idITM).addClass('divCenterUPsmall')
	}
	if (typ == "BB"){
		$('#'+idITM).removeClass('divCenterOVbig');
		$('#'+idITM).addClass('divCenterUPbig');
	}
}

