	function ChangeImage(first_pic, pic1)
	{
	if(document.images)
	{
		bobbyPin = new Image;
		bobbyPin.src = pic1;
		document.images[first_pic].src= bobbyPin.src;
	}
	}
	
	function ChangeBack(return_to, pic2)
    {
	if(document.images)
	{
		bobbyPin2 = new Image;
		bobbyPin2.src = pic2;
    	document.images[return_to].src= bobbyPin2.src;
	}
	}
 
 

function toggleDiv(divid){
    if(document.getElementById(divid).style.display == 'none'){
      document.getElementById(divid).style.display = 'block';
    }else{
      document.getElementById(divid).style.display = 'none';
    }
  }

  
  


xoff = new Image(); xoff.src = 'http://cinemaguild.com/catalog/images_miva/cart.gif'; 
xon  = new Image(); xon.src  = 'http://cinemaguild.com/catalog/images_miva/cart2.gif';
 

function imgOn(what) 
{ 
  what.src = xon.src; 
} 
function imgOff(what) 
{ 
  what.src = xoff.src; 
} 



