﻿/*
/* click on shop icon toggle category menue 
/*																									*/ 
$(document).ready(function() {
	$(".click-region-open").css({ cursor: "pointer"});
	$(".click-region-close").css({ cursor: "pointer"});
	
	//Öffnen:
	$(".click-region-open").click(function() {
			$(".sub-menue").hide();;	
			$(this).siblings(".sub-menue").fadeIn("slow");
			return false;
			});
	//Schließen:		
	$(".click-region-close").click(function() {
			$(this).parent(".sub-menue").fadeOut("slow");
			return false;			 
		});
	//Schließen-Button:		
	$(".close-submenue").click(function() {
			$(this).parent().parent().parent(".sub-menue").fadeOut("slow");;
			return false;			 
		});	
});


