function show_img(img,img_width,img_height)
	{
	var wnd=window.open('', '',"width="+img_width+",height="+img_height+",scrollbars=no,resizable=no,left=20,top=20,menubar=no,location=no,directories=no");
	wnd.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>Изображение</title></head><body style="margin: 0px; padding: 0px"><table width="100%" height="100%" cellpadding=0 cellspacing=0 border=0><tr><td align="center" valign="middle"><a href="javascript: window.close()" title="Закрыть"><img src="'+img+'" style="border: 0px;" alt="Закрыть"></a></td></tr></table></body></html>');
	}
$(document).ready(
  function()
  {
    $(".menu").hover(
      function()
      {
        var offset = $(this).offset()
        $(this).css("width","130").children(".pod_menu").css({top:offset.top, left:offset.left + $(this).width()}).show().children().eq(0).show(100, function() {$(this).next().show(100, arguments.callee);})
      },
      function()
      {
        $(this).children("div").hide(100).children("div").hide()
      }
    )
  }
)