// 
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// ~~~ MahonAmit.com ~~~
// ~~~ Copyright © 2006 by Pixels Heaven ~~~
// ~~~ PHP Coding by Shahar Tal ~~~
// ~~~ Layout & Design by Ronny Orbach ~~~
// ~~~ All Rights Reserved ~~~
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// All code within this file is copyrighted © 2006 by Pixels Heaven. 
// Unauthorized reproduction, use, or distribution of any code or any portion of it, 
// will result in severe civil and criminal penalties, and will be prosecuted to the
// maximum extent possible under law.
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// 
// preload images
function Preload() 
{
 var arImages=new Array();
 var temp = Preload.arguments; 
 
 for(x=0; x < temp.length; x++) 
 {
	arImages[x]=new Image();
	arImages[x].src=Preload.arguments[x];
 }
}
