jQuery.noConflict();

jQuery(document).ready(function(){

	// init menu
	jQuery('.hmenu_ul .hmenu_li span.bg').fadeOut(100);

	// fade menu
	jQuery('.hmenu_ul .hmenu_li').hover(function(){
		jQuery('span.bg',this).fadeIn('slow');
	},function(){
		jQuery('span.bg',this).fadeOut('slow');
	});


});
