var LastGraphUsed = false;
function SetAllSliders(Right,Left,ObjectID)
{

    LastGraphUsed = ObjectID;
    $(".flashgraph").each(function(){
        if(this.id == LastGraphUsed) return;
        this.SetSliders(Right,Left,ObjectID);
    });

}
function SetAllPreferences(
            DisplayHistogram,
             DetectGaps,
             LineForm,
             GraphType,
             TimeZone,
             MovingAverage,
             StandardDeviation,
             ObjectID)
{
    LastGraphUsed = ObjectID;
    $(".flashgraph").each(function(){
        if(this.id == LastGraphUsed) return;
        this.SetPreferences(
            DisplayHistogram,
             DetectGaps,
             LineForm,
             GraphType,
             TimeZone,
             MovingAverage,
             StandardDeviation,
             ObjectID
        );
    });
    
}
