$(document).ready(function() { 
	$('.button').wrap('<div class="inpbutton" />');
	$('h1, h2').prepend('<span class="marker"></span>');
	$('.shop_table td').each(function(){
		var height = $(this).find('.shop_img img:first').height();
		if(height)
		{
			$(this).find('.shop_description').css('marginTop', '-'+(height/2)+'px');
		}
	});
	$('#menu_top li').mouseover(function(){
		$(this).find('.level2').show();
	});
	$('#menu_top li').mouseleave(function(){
		$(this).find('.level2').hide();
	});
	$('#menu_top li .level2 .menu_item').mouseover(function(){
		$(this).find('.level3').show();
	});
	$('#menu_top li .level2 .menu_item').mouseleave(function(){
		$(this).find('.level3').hide();
	});
});
