function flash() {
    $(".flash").fadeIn("slow",function(){
            $(".image").fadeIn("slow",function(){
                $(".pointer").each(function(){
                    $(this).fadeIn("slow");
                    $(this).hover(function(){
                        $(this).next().fadeIn(1);
                    },function(){
                        $(this).next().fadeOut(1);
                    });
                });   
            });
            $(".sidepointer").each(function(){
                    $(this).fadeIn("slow");
                    $(this).next().fadeIn("slow");
                    $(this).hover(function(){
                        $(this).prev().fadeIn(1);
                    },function(){
                        $(this).prev().fadeOut(1);
                    });
            });
    });
}
$(flash);
