// JavaScript Document
$(document).ready(function() {
			
			// Fix background images on all TD elements
			$("img").pngfix();
			
			// Fix background images on all A elements
			$("#hands").pngfix();
			
			// Fix all inline PNG images and the element #container with the custom sizingMethod of "scale"
			$("img[@src$=png], #INFO").pngfix({
				sizingMethod: "scale"
			});
			
			$.miseAlphaImageLoader("sdsd");
		});