﻿$(document).ready(function () { var hideRow; $('.header ul.top_nav li.here ul').css('z-index', '20'); $('.header ul.top_nav li').each(function () { $(this).css("cursor", "pointer"); $(this).bind("mouseover", function () { clearTimeout(hideRow); $('.header ul.top_nav li').removeClass('temp'); $(this).children('ul').css('z-index', '20'); $('.header ul.top_nav li.here ul').css('z-index', '10'); $(this).addClass('temp'); hideRow = setTimeout(function () { $('.header ul.top_nav li.here ul').css('z-index', '20'); $('.header ul.top_nav li.temp ul').css('z-index', '10'); $('.header ul.top_nav li.temp').removeClass('temp') }, 6000) }) }); $(function () { var ticker = function () { setTimeout(function () { $('#ticker li:first').animate({ marginTop: '-30px' }, 800, function () { $(this).detach().appendTo('ul#ticker').removeAttr('style') }); ticker() }, 4000) }; ticker() }) });
