$(document).ready(function() {
	$("body").ready(function() {
		$("div.menu ul li.menu-part").each(function(){
			$(this).find("div.menu-block").css({
				"margin-left": (($(this).find("div.menu-button").attr("clientWidth") - $(this).find("div.menu-block").css("width").replace("px", ""))/2) + "px"
			});
		});
	});
	
    $("div.#price-change a").click(function() {
		$("div.price span").hide();
		$("div.price span." + this.id).show();
	});
	
	$("div.menu ul li.menu-part").mouseenter(function() {
		if ($(this).find("div.menu-block a").length){
			$(this).find("div.menu-block").slideToggle('fast');
		}
	}).mouseleave(function() {
		if ($(this).find("div.menu-block a").length){
			$(this).find("div.menu-block").slideToggle('fast');
		}
	});
	
	$("div.#price-change").mouseenter(function() {
		$(this).find("div.#price-change-block").slideToggle('fast');
	}).mouseleave(function() {
		$(this).find("div.#price-change-block").slideToggle('fast');
	});
});

