diff --git a/indra/newview/llstatusbar.cpp b/indra/newview/llstatusbar.cpp
index 8289930d97b305e95d57dc8d8c032b070268b189..6178ca6da07fc5391ff785becbeabef9a6811d49 100644
--- a/indra/newview/llstatusbar.cpp
+++ b/indra/newview/llstatusbar.cpp
@@ -124,6 +124,7 @@ LLStatusBar::LLStatusBar(const LLRect& rect)
 	mSGPacketLoss(NULL),
 	mBtnBuyCurrency(NULL),
 	mBtnVolume(NULL),
+	mPanelVolume(NULL),
 	mBalance(0),
 	mHealth(100),
 	mSquareMetersCredit(0),
@@ -159,6 +160,8 @@ LLStatusBar::LLStatusBar(const LLRect& rect)
 	mBtnVolume = getChild<LLButton>( "volume_btn" );
 	mBtnVolume->setClickedCallback( onClickVolume, this );
 
+	mPanelVolume = getChild<LLPanel>( "volume_pulldown" );
+
 	gSavedSettings.getControl("MuteAudio")->getSignal()->connect(boost::bind(&LLStatusBar::onVolumeChanged, this, _2));
 
 	childSetAction("scriptout", onClickScriptDebug, this);
@@ -511,10 +514,17 @@ static void onClickVolume(void* data)
 	gSavedSettings.setBOOL("MuteAudio", !mute_audio);
 	
 	// toggle the master volume pull-down
+
 	//LLFloaterReg::showInstance("volume_pulldown"); //tmp
-	LLPanelVolumePulldown *foo=
-		new LLPanelVolumePulldown();
-	foo->setVisible(TRUE);
+	//LLPanelVolumePulldown *foo=
+		//new LLPanelVolumePulldown();
+	//LLPanel* container = getRootView();//->getChild<LLPanel>("nav_bar_container");
+	//container->addChild(foo);
+	LLStatusBar *sb = (LLStatusBar*)(data);
+	llassert_always(sb);
+	sb->mPanelVolume->setRect(LLRect(1,1,100,100));
+	sb->mPanelVolume->setVisible(TRUE);
+	sb->mPanelVolume->setEnabled(TRUE);
 }
 
 // sets the static variables necessary for the date
diff --git a/indra/newview/llstatusbar.h b/indra/newview/llstatusbar.h
index 3ce35499615a99c6ee942ba73ccd93dfea05bf8f..d76416338480084752867ca6ebafd4af6f476063 100644
--- a/indra/newview/llstatusbar.h
+++ b/indra/newview/llstatusbar.h
@@ -87,6 +87,8 @@ class LLStatusBar
 	S32 getSquareMetersCommitted() const;
 	S32 getSquareMetersLeft() const;
 
+	LLPanel         *mPanelVolume;	
+
 private:
 	// simple method to setup the part that holds the date
 	void setupDate();
@@ -94,7 +96,6 @@ class LLStatusBar
 	void onVolumeChanged(const LLSD& newvalue);
 
 	static void onClickStatGraph(void* data);
-	
 
 private:
 	LLTextBox	*mTextHealth;
diff --git a/indra/newview/skins/default/xui/en/panel_status_bar.xml b/indra/newview/skins/default/xui/en/panel_status_bar.xml
index b1afe76500d14d840a0549e8eae1b304ecc64008..f1e8f7ebd7e6dfde7452d0f7b3ceafe1ea86d290 100644
--- a/indra/newview/skins/default/xui/en/panel_status_bar.xml
+++ b/indra/newview/skins/default/xui/en/panel_status_bar.xml
@@ -82,6 +82,17 @@
      name="volume_btn"
      tool_tip="Global Volume Control"
      width="16" />
+    <panel
+     class="panel_volume_pulldown"
+     filename="panel_volume_pulldown.xml"
+     follows="all"
+     height="533"
+     layout="topleft"
+     left="0"
+     name="volume_pulldown"
+     top="5"
+     visible="false"
+     width="313" />
     <text
      enabled="true"
      follows="right|bottom"