$(function(){	
	// Form stuff
	$('input, textarea, select').focus(function(){
		$(this).addClass('focus').prev('label').addClass('focus')
	}).blur(function(){
		$(this).removeClass('focus').prev('label').removeClass('focus')
	})
		
	$('form').submit(function() {
		$(this).children('input[type=submit]').attr('disabled', 'true');
	});

	/* Setup links that automatically popup in a new window */
	$('a[rel=external]').live('click', function() {
		window.open($(this).attr('href'));
		return false;
	});
	
});
