﻿// JScript File

function PhotosTab(){
	document.getElementById("PhotosList").className = "arrow_menu";
	document.getElementById("tabPhotos").className = "active";
	document.getElementById("VideosList").className = "arrow_menu_hidden";
	document.getElementById("tabVideos").className = "end";
}

function VideosTab(){
	document.getElementById("PhotosList").className = "arrow_menu_hidden";
	document.getElementById("tabPhotos").className = "end";
	document.getElementById("VideosList").className = "arrow_menu";
	document.getElementById("tabVideos").className = "active";
}

