/* MENU FUNCTION */

/* CYCLE */
$(function() {
    $('#promo').before('<ul id="promo-nav"></ul>').cycle({ 
        fx:     'fade',
        speed:  'fast',
        timeout: 0,
		/* BREAK ME */
		pagerEvent: 'mouseover',
        pager:  '#promo-nav',
		slideExpr: 'img',
		pagerAnchorBuilder: function(idx, slide) { 
			TheLink = jQuery(slide).attr("alt");
			if (TheLink.length > 24){LinkClass="TwoLine";}
			else {LinkClass="OneLine";}
        return '<li class="' + LinkClass + '"><a href="#">' + TheLink + '</a></li>';
    	} 
    });
});

$(document).ready(function(){

	$('.topnav').css("display","block");
	
	$("#promo-nav li:first").css("display", "none");
	
	$('.topnav li').each(function() {
		$(this).find('a').addClass('menuparent');
	});
	$('.topnav li ul li a').removeClass('menuparent');
	
	$('.topnav li.toplevel:last a').css('margin', '0px');	

	$(".toplevel").each(function(){
		$(this).find('ul:first').addClass('first-ul');
	});
	
	$(".topnav .menuparent").parent().hover(function(){
	$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(1);
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
		});

});

