
$(document).ready(function() {

  $("a.prodimg").imgbox({
    alignment: 'center',
    allowMultiple: false,
    zoomOpacity: false,
    overlayShow: true,
    overlayOpacity: 0.4
  });

  $('#rotating_images').cycle({
		fx: 'fade',
    timeout: 7000,
    speed: 2500
	});

});


function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width=620,height=500,left=440,top=262');");
}


function ShowHide (objAction, objButton)
{
  if (objAction.style.display == 'none')
  {
    // objAction.style.display = 'block';
    $(objAction).show();
    $(objAction).html('[-]');
    /*
    Effect.Appear(objAction);
    objButton.innerHTML = '[-]';
    */
  }
  else
  {
    $(objAction).hide();
    $(objAction).html('[+]');
    /*
    objAction.style.display = 'none';
    objButton.innerHTML = '[+]';
    */
  }
}


function PopUpReceipt() {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open('printreceipt.php', '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width=620,height=500,left=440,top=262');");
}

/*
 *  Copies bill address into the shipping address during account setup
 */
function UseBilling()
{
  document.userform.forename2.value = document.userform.forename.value;
  document.userform.surname2.value = document.userform.surname.value;
  document.userform.company2.value = document.userform.company.value;
  document.userform.address2.innerHTML = document.userform.address.innerHTML;
  document.userform.town2.value = document.userform.town.value;
  document.userform.county2.selectedIndex = document.userform.county.selectedIndex;
  document.userform.postcode2.value = document.userform.postcode.value;
  document.userform.country2.selectedIndex = document.userform.country.selectedIndex;
  document.userform.tel2.value = document.userform.tel.value;    
}