$( function() {
	$( "#cancel-button" ).click( function() {
		document.location.href = '#';
		return false;
	} );
			
	$( "#left-column .focus-left > .focus-right > input" ).focus( function() {
		$( this ).parent().parent().parent().addClass( "focus" );
	} ).blur( function() {
		$( this ).parent().parent().parent().removeClass( "focus" );
	} );
	
	$( "#left-column .focus-left > .focus-right > select" ).focus( function() {
		$( this ).parent().parent().parent().addClass( "focus" );
	} ).blur( function() {
		$( this ).parent().parent().parent().removeClass( "focus" );
	} );
	
	$( "#left-column .focus-extended-left > .focus-extended-right > .focus-top-left > .focus-top-right > .focus-bottom-left > .focus-bottom-right > textarea" ).focus( function() {
		$( this ).parent().parent().parent().parent().parent().parent().parent().addClass( "focus" );
	} ).blur( function() {
		$( this ).parent().parent().parent().parent().parent().parent().parent().removeClass( "focus" );
	} );
	
	var first = true;
	$( "#left-column input" ).each( function() {
		if( first && ( $( this ).attr( "type" ) == "text" || $( this ).attr( "type" ) == "password" ) ) {
			$( this ).focus();
			first = false;
		}
	} );
} );