// JavaScript Document
var count=false;

function Void(){
}
document.getElementById("goBack").style.display = "none";

function moreInfo(info){
	if(document.getElementById){
		thisInfo = document.getElementById(info).style;
		thisInfo.display = "none";
		document.getElementById("continuePS").style.display = "none";
		document.getElementById("goBack").style.display = "block";
	if(thisInfo.display == "block"){
			thisInfo.display = "none";
		}else{
			thisInfo.display = "block";
			thisInfo.parentNode.moveTo();
		}
		return false;
	}else {
		return true;	
	}
}

function mainPage(info){
  if(document.getElementById){
		thisInfo = document.getElementById(info).style;
		document.getElementById("continuePS").style.display = "block";
		document.getElementById("goBack").style.display = "none";
	if(thisInfo.display == "block"){
			thisInfo.display = "none";
			thisInfo.parentNode.moveTo();
		}else{
			thisInfo.display = "block";
		}
		return false;
	}else {
		return true;	
  }
}
//jQuery fade in/out the main image on the page
$("#main-image-large").css("display","none");

$("#main-image").click(function() {
  $("#main-image-large").fadeIn("slow");
});
$("#main-image-large").click(function(){
	$("#main-image-large").fadeOut("slow");
});

//jQuery fade in/out remarque text
$("#rem-desc-jq").css("display","none");
$("#rem-jq").hover(
				function() {
					$("#rem-desc-jq").stop(true, true).fadeIn("slow");
				},
				function() {
					$("#rem-desc-jq").stop(true, true).fadeOut("slow");
				}
);
