// JavaScript CDS.bg
<!--
if (document.images)
{  pic1= new Image(1,1); pic1.src="/images/ask-o.png";   pic2= new Image(1,1); pic2.src="/images/more-o.png";   pic3= new Image(1,1); pic3.src="/images/call-o.png"; }
$(document).ready(function() {
                $('#menu > li').hover(
                function () {
                    var $this = $(this);
                    $('a',$this).addClass('hover');
                    $('span',$this).stop().animate({'top':'-20px'},300).css({'zIndex':'1'});
                },
                function () {
                    var $this = $(this);
                    $('a',$this).removeClass('hover');
                    $('span',$this).stop().animate({'top':'-78px'},800).css({'zIndex':'1'});
                }
            );
            });
//-->

