// buidl html

//alert('sfmenu_moebelix.at -> initialising!');

Number.prototype.formatMoney = function(c, d, t){
	var n = this, c = isNaN(c = Math.abs(c)) ? 2 : c, d = d == undefined ? "," : d, t = t == undefined ? "." : t, s = n < 0 ? "-" : "", i = parseInt(n = Math.abs(+n || 0).toFixed(c)) + "", j = (j = i.length) > 3 ? j % 3 : 0;
	return s + (j ? i.substr(0, j) + t : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + t) + (c ? d + Math.abs(n - i).toFixed(c).slice(2) : "");
};



if(typeof(window['hybris_menu']) != "undefined") {
	column_after = 15;
	item_count = 0;

	hym = Array();

	jQuery.each(hybris_menu, function(index1, value1) {
		if(index1 != '0.0') {
			item_count = 0;
			value1.html = ''
			jQuery.each(value1, function(index2, value2) {
				if(index2!='end' && index2!='html') {
					if(item_count!=0 && (item_count%(column_after))==0) {
						value1.html += '</ul></div><div class="spacer">&nbsp;</div><div class="column"><ul>';
						} 
	 				value1.html += '<li><a href="' + value2.url + '">' + value2.title + '</a></li>';
	 				item_count++
				 	}
				});
		   	value1.html = '<ul class="drop-down colums'+ Math.ceil(item_count/column_after) +'"><li class="columns"><div class="column"><ul>' + value1.html;
		 	value1.html += '<ul></div></li></ul>';
			hym.push(value1.html);
			}
		});
	
	
	
	// append css-menu to main-menu
	jQuery(document).ready(function() {
		//jQuery("#nav1 > ul > li:gt(8)").addClass("right");


		jQuery('#nav1 > ul > li').each(function(index){
			jQuery(this).append(' ' + hym[index]);
			
			});

/*
		// Wohnen
		jQuery('li#nav1_568').append(hybris_menu['1.0'].html);
		// Schlafen
		jQuery('li#nav1_566').append(hybris_menu['2.0'].html);
		// Kids
		jQuery('li#nav1_705').append(hybris_menu['3.0'].html);
		// Küche
		jQuery('li#nav1_567').append(hybris_menu['4.0'].html);
		// Bad
		jQuery('li#nav1_565').append(hybris_menu['5.0'].html);
		// Kleinmöbel
		jQuery('li#nav1_564').append(hybris_menu['6.0'].html);
		// Vorzimmer
		jQuery('li#nav1_706').append(hybris_menu['7.0'].html);
		// Büro
		jQuery('li#nav1_563').append(hybris_menu['8.0'].html);
		// Teppich
		jQuery('li#nav1_707').append(hybris_menu['9.0'].html);
		// Leuchten
		jQuery('li#nav1_708').append(hybris_menu['10.0'].html);
		// Heimtextilien
		jQuery('li#nav1_562').append(hybris_menu['11.0'].html);
		// E-Geräte
		jQuery('li#nav1_709').append(hybris_menu['12.0'].html);
		// Boutique
		jQuery('li#nav1_561').append(hybris_menu['13.0'].html);
*/

		});
	}

// initialise sfmenu
jQuery(document).ready(function() {
	
    // #nav4
	jQuery("ul.sf-menu-top").supersubs({ 
    	minWidth:    12, 
    	maxWidth:    27, 
        extraWidth:  1 
        }).superfish({
            delay:			300, 
            animation:  	{opacity:'show',height:'show'}, 
            speed:      	'fast', 
            dropShadows: 	false         
            });

	// #nav1
	
	jQuery("ul.sf-menu-2").superfish({
        	delay:       	300,                             
    		animation:   	{opacity:'show'},  
            speed:       	1,                        
            dropShadows: 	false,
			autoArrows: 	false,
			disableHI:     	true,
			onBeforeShow: 	function(){jQuery(document).triggerHandler("click.linkselect");}                              
            });
	
	
	});
	
	
