/*****************************************************************************
 *
 * Copyright © 2011 Simon Robb
 *
 * All rights reserved
 *
 ****************************************************************************/

(function () {
	$(document).ready (function () {		
		/*
		 * Active inputs
		 */
		$('input[type="text"], textarea')
			.focus (function () { $(this).css ('background', 'rgba(255,255,255,1)'); })
			.blur (function () { $(this).css ('background', 'rgba(255,255,255,0.58)'); });
		
		/*
		 * Autoclears
		 */
		$('dd.autoclear input')
			.add ('input.autoclear')
			.each (function () {
				if (!$(this).val ()) {
					$(this).val ($(this).attr ('alt'))
						.addClass ('autoclear');
				}
			})
			.blur (function () {
				if (!$(this).val ()) {
					$(this).val ($(this).attr ('alt'))
						.addClass ('autoclear');
				}
			})
			.focus (function () {
				if ($(this).val () == $(this).attr ('alt')) {
					$(this).val ('')
						.removeClass ('autoclear');
				}
			});
			
		$('form').submit (function () {
			$('dd.autoclear input')
				.add ('input.autoclear')
				.each (function (i) {
					var $$ = $(this);
					if ($$.val () == $$.attr ('alt'))
						$$.val ('');
				});
		});
		
	});
})(jQuery);
