 $(document).ready(function() {

	$(".menu_button").hover(
			function() {

					$(this).find('.sel').show();
					$(this).find('.def').hide();					
			},
			function() {
					$(this).find('.def').show();
					$(this).find('.sel').hide();
			}
	);

 
 
 });
