//if user clicked on photo-link:
function show_photo() {
  var photo = document.getElementById("nightsout-photos").style.display = "block";
  var video = document.getElementById("nightsout-videos").style.display = "none";
  //document.getElementById("video-link").style.color = "red";
  document.getElementById("photo-link").style.background = "url(/media/photo-text-link-red.jpg) no-repeat";
  document.getElementById("video-link").style.background = "url(/media/video-text-link-black.jpg) no-repeat";
}

//if user clicked on photo-link:
function show_video() {
  var photo = document.getElementById("nightsout-photos").style.display = "none";
  var video = document.getElementById("nightsout-videos").style.display = "block";

  document.getElementById("video-link").style.background = "url(/media/video-text-link-red.jpg) no-repeat";
  document.getElementById("photo-link").style.background = "url(/media/photo-text-link-black.jpg) no-repeat";
}




/*----//-ratings list toggle code-\\----*/

function show_ratings_list() {
 document.getElementById('rating-list-holder').style.display ='block';
}

function hide_ratings_list() {
 document.getElementById('rating-list-holder').style.display ='none';
}





/*---Carling Non-Stockist code for edit screen----*/

/*--profile section--*/
function show_non_stockist_profile() {
  document.getElementById('non-stockist-profile').style.display ='block';
}
function hide_non_stockist_profile() {
  document.getElementById('non-stockist-profile').style.display ='none';
}

/*--whats on section--*/
function show_non_stockist_events() {
  document.getElementById('non-stockist-events').style.display ='block';
}
function hide_non_stockist_events() {
  document.getElementById('non-stockist-events').style.display ='none';
}

/*--media (photo/video upload section--*/
function show_non_stockist_media() {
  document.getElementById('non-stockist-media').style.display ='block';
}
function hide_non_stockist_media() {
  document.getElementById('non-stockist-media').style.display ='none';
}

/*-media uploads form --*/
function show_uploads_form() {
  document.getElementById('uploads_form').style.display ='block';
}
function hide_uploads_form() {
  document.getElementById('uploads_form').style.display ='none';
}

/*--menu section--*/
function show_non_stockist_menu() {
  document.getElementById('non-stockist-menu').style.display ='block';
}
function hide_non_stockist_menu() {
  document.getElementById('non-stockist-menu').style.display ='none';
}



/*--control panel section--*/
function show_non_stockist_controlpanel() {
  document.getElementById('non-stockist-controlpanel').style.display ='block';
}
function hide_non_stockist_controlpanel() {
  document.getElementById('non-stockist-controlpanel').style.display ='none';
}



/*--edit profile section--*/
function show_edit_profile() {
  document.getElementById('edit-profile').style.display ='block';
}
function hide_edit_profile() {
  document.getElementById('edit-profile').style.display ='none';
}





























/*--the following has been commented out for good reason. Just dont ask me why!.
function nightsout_toggle(layer) {
   document.getElementById("nightsout-events").style.display = "none";  
   document.getElementById("nightsout-menu").style.display = "none";  
   document.getElementById(layer).style.display = "block";
 }
*/

/*

function nightsout_toggle(layer) 
{
  var photo = document.getElementById("nightsout-photos").style.display = "none";
  var video = document.getElementById("nightsout-videos").style.display = "none";
  //Set the link color to default:
  document.getElementById("photo-link").style.color = "red";
  document.getElementById("video-link").style.color = "red";
  //make hidden block appear:
  document.getElementById(layer).style.display = "block";
  //if user clicked on photo-link
  if(layer = "nightsout-photos") 
  {
    document.getElementById("photo-link").style.color = "black";
    document.getElementById("video-link").style.color = "red";
  } 
  //if user clicked on video-link
  else if(layer = "nightsout-videos") 
  {
    document.getElementById("video-link").style.color = "black";
    document.getElementById("photo-link").style.color = "red";
  }
}
*/