
(function($){ 
    $(document).ready(function(){
//    $('#testimonialslist').cycle({
//        fx:     'scrollUp', 
//        delay: 2000
//    });
    $('.pics').cycle('fade');
    $("#clientarea").hover(function(){
        $(this).stop().animate({
            top: '0px'
        }, 'slow', 'easeOutQuad');
    }, function() {
        $(this).stop().animate({
            top: '-66px'
        }, 'slow', 'easeOutBounce');
    });
    $("ul#pricefaq li.rounded").hover(function() {
        $(this).animate({
            backgroundColor: "#eee"
        }, 600);
    },function() {
        $(this).animate({
            backgroundColor: "#fff"
        }, 400);
    });
    $("div#tweet p").hover(function() {
        $(this).animate({
            backgroundColor: "#070707"
        }, 600);
    },function() {
        $(this).animate({
            backgroundColor: "#474747"
        }, 400);
    });

        /*
         * dropdown menu
         */
        $(".menu li").hover(
            function () {
                $(this).has('ul').addClass("active");
                $(this).find('ul:first').css({
                    visibility: "visible",
                    display: "none"
                }).stop(true, true).slideDown('fast');
            },
            function () {
                $(this).removeClass("active");
                $(this).find('ul:first').css({
                    visibility: "visible",
                    display: "block"
                }).stop(true, true).slideUp('fast');
            }
            );

      

        $($('.menu li')).each( function() {
            if( $(this).find('ul').size() > 0 ){
                $(this).addClass("arrow");
            }
        });

   });
    



})(this.jQuery); 





