$(document).ready(function(){
	$('#display').cycle({
		autostop: 1,
		timeout: 100,
		delay: -2000,
		cleartype: true,
		cleartypeNoBg: true
	});

    $('a.mainNavItem, a.mainNavItemChild').each(function() {
        var hasSubMenu = $(this).siblings().size() > 0 || $(this).children().size() > 0 ;
        if(hasSubMenu) {
            $(this).css('cursor','default');
            $(this).click(function(event) {
                event.preventDefault();
            });
        }
    });
});

