function preloadImages(imgPath, images, postFix){
	// @TODO: Need to Refactor, Asset.image fails
	try
	{
		images.each(function(img){
			new Image(imgPath + img + postFix + ".png");
			new Image(imgPath + img + postFix + ".jpg");
		});
	}
	catch(e)
	{
		//console.log("exeption:" + e);
	}
}
