/**
 * Created by JetBrains PhpStorm.
 * User: Heiko Schubert
 * Date: 4/26/11
 * Time: 2:46 PM
 * To change this template use File | Settings | File Templates.
 */
$(document).ready(function() {
	$('ul.dropmenu').dropmenu( {
		effect          : "slide",       //  "slide", "fade", or "none"
		speed           : "normal",     //  "normal", "fast", "slow", 100, 1000, etc
		timeout         : 250,
		nbsp            : true,
		maxWidth        : 0
	});
	$('li.menu').mouseover(function() {
		$(this).prev().css('border-right-color', 'transparent');
	});
	$('li.menu').mouseout(function() {
		$(this).prev().css('border-right-color', '#d6d6d6');
	});
});

