$(document).ready(function(){
	$('#top-menu ul li').mouseenter(function(){
		$('#subcorner-l').hide();
		$('#subcorner-r').hide();
		$('#subcontent').hide();

		var item_id = $(this).attr('id');

		var code = $('div.submenu', this).html();
		if((code == null) || (code.length <= 17)) return false;
		$('#subcontent').html(code);
		var position = $(this).position();
		var height = $('#subcontent').outerHeight();
		var width = $('#subcontent').outerWidth();

		if (item_id == 'item-7' || item_id == 'item-8' || item_id == 'item-9' || item_id == 'item-10' || item_id == 'item-11')
		{
		  var top = 520;
		  var top = (top+height > 550) ? 550-height : top;
		  var left = (width+position.left > 900) ? position.left - $('#subcontent').outerWidth() + 80 : position.left + 3;
		  left = left + 50;
    }
    else
    {
      var top = 552;
      var top = (top+height > 463) ? 463-height : top; // было 640
      var left = (width+position.left > 900) ? position.left - $('#subcontent').outerWidth() + 80 : position.left + 3;
    }


		// лефт считался от 900


		$('#subcontent').css('top', top+'px');
		$('#subcontent').css('left', left+'px');

		$('#subcorner-l').css('left', (left-$('#subcorner-l').outerWidth()+3)+'px');
		$('#subcorner-r').css('left', (left+$('#subcontent').outerWidth()-3)+'px');

		if (width+position.left > 900) {
			$('#subcorner-r').fadeIn(500);
		} else {
			$('#subcorner-l').fadeIn(500);
		}
		$('#subcontent').fadeIn(500);
	});

	$('#header').mouseleave(function(){
		$('#subcorner-l').fadeOut(500);
		$('#subcorner-r').fadeOut(500);
		$('#subcontent').fadeOut(500);
	});

	$('#order-open').click(function(){
		$('#item-content').slideUp();
		$('#item-form').slideDown();
		return false;
	});

	$('#reset').click(function(){
		$('#item-form').slideUp();
		$('#item-content').slideDown();
		return false;
	})
});
