var $j = jQuery.noConflict();

$j(document).ready(function()
{
	function __construct()
	{
		//  ==========================================
		//  Setup all input text box to clear on focus
			$j('input[type="text"]').each(function()
			{
				$j(this).CreateAutoSelect();
			});

		
		$j(document).pngFix();
	};
	
	__construct();
});
