/*
	Created by:
	Created for: world-direct eBusiness solutions GmbH
	Client:
	Description: JavaScript file for the superfish plugin
	Copyright: (C) world-direct eBusiness solutions GmbH 2011
*/

// jQuery's noConflict mode is used instead of the $
var J = jQuery.noConflict();

/* when the document is ready */
jQuery(document).ready(function()
{
	//--------------------------------------------------
	// Superfish CSS, JS menu, on all pages, with supersubs
	J("ul.sf-menu").supersubs({
		minWidth: 2,
		maxWidth: 27,
		extraWidth: 1
	}).superfish({
		delay:200,
		animation: {
			height:"show"
		},
		speed:"normal",
		dropShadows:false,
		autoArrows:false
	});
});


