$(document).ready(function() {
	// Dialog boxes
	if ($('#dialog').length > 0) {
		$('#dialog').dialog({
			title: 'Information',
			bgiframe: true,
			modal: true,
			buttons: {
				Ok: function() {
					$(this).dialog('close');
				}
			}
		});
	}

	// PNG fix
	jQuery.ifixpng('images/blank.gif');
	jQuery('img[src$=.png], .bgPng').ifixpng();

	// Input hint
	$('input.hint').each(function() {
		if ($(this).attr('value').length == 0) {
			$(this).attr('value', $(this).attr('title'));
		}
	});

	// Input focus clear
	$('input.focus-clear').each(function() {
		$(this).focus(function() {
			if ($(this).attr('value') == $(this).attr('title')) {
				$(this).attr('value', '');
			}
		});

		$(this).blur(function() {
			if ($(this).attr('value').length == 0) {
				$(this).attr('value', $(this).attr('title'));
			}
		});
	});
});