var vtab = "";
j_sliding_panel = "";
$(document).ready(function() {
	j_sliding_panel = $("div#sliding_login_panel");
	// Expand Panel
	$("#sliding_audio_open").click(function(){
		toggleTabs('audio');
	});	
	$("#sliding_video_open").click(function(){
		toggleTabs('video');
	});
	$("#sliding_photo_open").click(function(){
		toggleTabs('photo');
	});
	$("#sliding_close").click(function(){
		closeTabs('close');
	});
		
});

function toggleTabs(vtab) {
	j_sliding_panel.slideUp("normal", function() {
		if ( document.getElementById("video_tab") ) document.getElementById("video_tab").className = "sliding_dark_tab";
		if ( document.getElementById("photo_tab") ) document.getElementById("photo_tab").className = "sliding_dark_tab";
		if ( document.getElementById("audio_tab") ) document.getElementById("audio_tab").className = "sliding_dark_tab";
		if ( document.getElementById(vtab+"_tab") ) document.getElementById(vtab+"_tab").className = "sliding_tab";
		if ( document.getElementById("close_tab") ) document.getElementById("close_tab").style.display = "block";
		if ( document.getElementById("div_audio") ) document.getElementById("div_audio").style.display = "none";
		if ( document.getElementById("div_photo") ) document.getElementById("div_photo").style.display = "none";
		if ( document.getElementById("div_video") ) document.getElementById("div_video").style.display = "none";
		if ( document.getElementById("div_"+vtab) ) document.getElementById("div_"+vtab).style.display = "block";
	} );
	j_sliding_panel.slideDown("slow");	
}	

function closeTabs(vtab) {
	if ( document.getElementById("video_tab") ) document.getElementById("video_tab").className = "sliding_tab";
	if ( document.getElementById("photo_tab") ) document.getElementById("photo_tab").className = "sliding_tab";
	if ( document.getElementById("audio_tab") ) document.getElementById("audio_tab").className = "sliding_tab";
	if ( document.getElementById("close_tab") ) document.getElementById("close_tab").style.display = "none";
	j_sliding_panel.slideUp("slow");	
}	
