$(function () {
	// target attribute is deprecated, but useful...
	$('a[href^="http://"], a[href$=".pdf"]').attr({'target':'_blank'});
	// auto-updating input defaults
	$('input[type="text"]')
		.bind('focus', function () {
			if (typeof $(this).data('original') == 'undefined') {
				$(this).data('original', $(this).val());
			}
			$(this).val('');
		})
		.bind('blur', function () {
			if ($(this).val() == '' && typeof $(this).data('original') != 'undefined') {
				$(this).val($(this).data('original'));
			}
			else {
				$(this).data('original', $(this).val());
			}
		});
	// IE6 alpha-layer PNG fixer-upper
	if ($.browser.msie && $.browser.version == '6.0') {
		DD_belatedPNG.fix('#header h1.logo, #secondaryContent div#moreThanAPizzaShop h3');
	}
});