$(function() {
		   
	/* Setup links that automatically popup in a new window */
	$('a[rel=external]').live('click', function() {
		window.open($(this).attr('href'));
		return false;
	});
	
	// IE support for HTML5 placeholder
	$('input[placeholder]').placeHeld();

	/* Setup friendly HTML forms, highlights and focus */
    $('.friendly-form').each(function () {
		$(this).find('.field').each(function () {
			$(this).blur().focus(function () {
				$(this).addClass('focus');
				$(this).closest('li').find('label').addClass('focus');
				$(this).parent().siblings('.helper').fadeIn();
			}).blur(function () {
				$(this).removeClass('focus');
				$(this).closest('li').find('label').removeClass('focus');
				$(this).parent().siblings('.helper').fadeOut();
			});
		});
		$(this).submit(function() {
			$(this).find('input[type=submit]').attr('disabled', 'true');
		});
	});

});

