// JavaScript Document

$(document).ready(function() {
			
			// Fix background images on all A elements
			$("a").pngfix();
			
			// Fix background images on all h3 elements
			$("h3").pngfix();
			
			// Fix background images on all h1 elements
			$("h1").pngfix();
			
			// Fix background images on all h2 elements
			$("h2").pngfix();
			
			// Fix background images on all h4 elements
			$("h4").pngfix();
			
			// Fix background images on all h5 elements
			$("h5").pngfix();
			
			// Fix background images on all h6 elements
			$("h6").pngfix();
			
			// Fix background images on all p elements
			$("p").pngfix();
			
			// Fix background images on all button elements
			$("button").pngfix();
			
			// Fix all inline PNG images and the element #container with the custom sizingMethod of "scale"
			$("img[@src$=png], #topbar, #footer-shadow, #popupbox, #lefttopside").pngfix({
				sizingMethod: "scale"
			});
			
			// $.miseAlphaImageLoader("sdsd");
		});
