// JavaScript Document

// This Function Use in a Home template from Add Rotate
function swapPic()
     {
        if(document.getElementById)
             {
             var thePicture=document.getElementById("redCubes");
             var picPath="/images/bghome"+rnd(3)+".jpg";
             thePicture.style.background="url("+picPath+")";
		   }
     }
     
function rnd(n)
     {
        return Math.floor(Math.random() * n) + 1;
     }     

// This Function Use in a Charities template     
function showDetails(d,e)
    {
        for(j=1; j<=e;j++)
        {	
        if(d==j)
	        {
		        document.getElementById("charityDetails"+j).style.display="block";
	        }    		
         else		
	        {
		        document.getElementById("charityDetails"+j).style.display="none";
	        }
        }
    }