/* Copyright (c) online design Werbung & Medien GmbH
 * Diese Software ist Kommerziel und unterleigt der Lizenzpflicht der online design Werbung & Medien GmbH
 *
 * Copyright (c) online design Werbung & Medien GmbH 2011
 * This software is to be licensed.
 * Use or distribution only with expressed permission and with license of WEBSALE AG.
*/

 $(document).ready(function() {
	$("#cat_ul a.opened").each(function() {
		$(this).removeClass("opened");
	});
	
	$("#cat_ul ul li").hoverIntent( 
		function () {
			//$(this).parents().children("a").addClass("focused"); 
			$(this).children("ul").show();			
		},
		function(){	
			//$(this).parents().children("a").removeClass("focused").delay(800);
			$(this).children("ul").hide();
		}
	);
	
	$(".level1 ul li").hover( 
		function () {
			$(this).parents().children("a").addClass("focused"); 
			$(this).children("ul").show();			
		},
		function(){	
			$(this).parents().children("a").removeClass("focused").delay(800);
			$(this).children("ul").hide();
		}
	);
	
	$("#cat_ul a.selected").parentsUntil("#cat_ul").addClass("opened");
	$("#cat_ul li.opened").each(function() {
		$(this).children("a").addClass("opened");
		$(this).children("ul").addClass("opened");
	});
	
});
