// DAFT
            $(function() {
                var current = 0;
                $('#bg1,#bg2,#bg3,#bg4').mouseover(function(e){
                    var $this = $(this);
                    if($this.parent().index() == current)
                        return;
                    var item = e.target.id;
                    if(item == 'bg1' || ((current > 1 && current < 4) && item != 'bg4'))
                        $('#menu .sub'+parseInt(current+1)).stop().animate({backgroundPosition:"(-436px 0)"},300,function(){
                            $(this).find('li').hide();
                        });
                    else
                        $('#menu .sub'+parseInt(current+1)).stop().animate({backgroundPosition:"(436px 0)"},300,function(){
                            $(this).find('li').hide();
                        });
                    if(item == 'bg1' || ((current > 1 && current < 4) && item != 'bg4')){
                        $('#menu > li').animate({backgroundPosition:"(-872px 0)"},0).removeClass('bg1 bg2 bg3 bg4').addClass(item);
                        move(1,item);
                    }
                    else {
                        $('#menu > li').animate({backgroundPosition:"(872px 0)"},0).removeClass('bg1 bg2 bg3 bg4').addClass(item);
                        move(0,item);
                    }
                    current = $this.parent().index();
                    $('#menu .sub'+parseInt(current+1)).stop().animate({backgroundPosition:"(0 0)"},300,function(){
                        $(this).find('li').fadeIn();
                    });
                });
                function move(dir,item){
                    if(dir){
                        $('#bg1').parent().stop().animate({backgroundPosition:"(0 0)"},200);
                        $('#bg2').parent().stop().animate({backgroundPosition:"(-218px 0)"},300);
                        $('#bg3').parent().stop().animate({backgroundPosition:"(-436px 0)"},400);
                        $('#bg4').parent().stop().animate({backgroundPosition:"(-654px 0)"},500,function(){
                            $('#menuWrapper').removeClass('bg1 bg2 bg3 bg4').addClass(item);
                        });
                    }
                    else{
                        $('#bg1').parent().stop().animate({backgroundPosition:"(0 0)"},500,function(){
                            $('#menuWrapper').removeClass('bg4 bg3 bg2 bg1').addClass(item);
                        });
                        $('#bg2').parent().stop().animate({backgroundPosition:"(-218px 0)"},400);
                        $('#bg3').parent().stop().animate({backgroundPosition:"(-436px 0)"},300);
                        $('#bg4').parent().stop().animate({backgroundPosition:"(-654px 0)"},200);
                    }
                }
            });
