//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";
}

//if user clicked on video-link:
function show_video() {
  var photo = document.getElementById("nightsout-photos").style.display = "none";
  var video = document.getElementById("nightsout-videos").style.display = "block";
}




/*----//-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() {
	jQuery("#edit-profile").show();
}

function hide_edit_profile() {
	jQuery("#edit-profile").hide();
}

jQuery(document).ready(function(){
	jQuery("#bf-edit-details").click(function() {
		
		jQuery("#edit-profile").toggle();
		if ( jQuery(this).html() == "Edit Details" ) {
			jQuery(this).html("Close");
		} else {
			jQuery(this).html("Edit Details");
		}
			
	});
});



/*--Regulars section--*/
function show_non_stockist_regulars() {
  jQuery("#non-stockist-regulars").show();
}

function hide_non_stockist_regulars() {
  jQuery("#non-stockist-regulars").hide();
}
function toggle_non_stockist_regulars() {
  jQuery("#non-stockist-regulars").toggle();
}
