$(document).ready(function () {
	$(".menuSubscribe").click(function () {
		if ($("#fullmenulist").css("display") == "none") {
			$("#fullmenulist").show("slow");
			$(this).animate({backgroundPosition: '-34px 0px'});
		} else {
			$("#fullmenulist").hide("slow");
			$(this).animate({backgroundPosition: '0px 0px'});
		}
	});
	
	
	$("#material_click").click(function () {
		$("#cover").fadeIn("slow", function  () {
			$("#material_block_information").fadeIn("slow");
		});
		return false;
	});	
	
	$("#furniture_click").click(function () {
		$("#cover").fadeIn("slow", function  () {
			$("#furnitura_block_information").fadeIn("slow");
		});
		return false;
	});
	
	$(".close-btn").click(function () {
		$("#"+$(this).attr("rel")).fadeOut("slow", function () {
			$("#cover").fadeOut("slow");
		});
	});
	
}); 
function expand(id) {
	$("#"+id+"_inner").slideToggle(300);
}
function expandAll(id) {
	$("#"+id+"_inner").slideToggle(300);
	$("#"+id+"_gallery").slideToggle(300);
}
function expandCat(id) {
	$("#"+id+"_gallery").slideToggle(300);
}
