function selectSuffixHover() {
	$('#suffix-wrap div.selClone a.selOpt').hover(function() {
		if (!$(this).hasClass('soOpen')) 
			$(this).css('background-image', 'url(images/background_form_selectMenu_top_over.gif)');
	}, function() {
		if (!$(this).hasClass('soOpen')) 
			$(this).css('background-image', 'url(images/background_form_selectMenu_top.gif)');
	}).click(function() {
		$(this).css('background-image', 'url(images/background_form_selectMenu_top_toggle.gif)');
	});
	$('#suffix-wrap div.selClone').mouseleave(function() {
		$('#suffix-wrap div.selClone a.selOpt').css('background-image', 'url(images/background_form_selectMenu_top.gif)');
	});
}