/* Controls the menu system */

$(document).ready(function(){
            
            $('.businessList li:not(.last) a').mouseover(function() {
                        var thisIndex = $('.businessList li').index($(this).parent());
//                    $('.businessContent ul').animate({top: -(thisIndex * 179)});
                        $('.businessContent ul').css('top', -(thisIndex * 179));
                        return false;
            });

            
            $('.newsFooter a:eq(1) img').click(function() {
                        var thisTop = parseInt($('#newsFeed').css('top'));
                        var newTop = thisTop - 138;
                        if(Math.abs(newTop) >= Math.abs(parseInt($('#newsFeed').height()))) {
                                    newTop = thisTop;
                        }

                        $('#newsFeed').stop(true,true).animate({top: newTop});
                        return false;
            });
            
            $('.newsFooter a:eq(2) img').click(function() {
                        var thisTop = parseInt($('#newsFeed').css('top'));
                        var newTop = thisTop + 138;
                        if(newTop > 0) {
                                    newTop = 0;
                        }

                        $('#newsFeed').stop(false,true).animate({top: newTop});
                        return false;
            });

});
