$(document).ready(function(){
		
	// Signup Helpers
	$('#signup label').next().bind('focus', function(){
		
		var focused = $(this).attr('id');
		var offset = $(this).position();
		
		$('div#form_helpers div.'+focused).css({top: (offset.top-10)});
		$('div#form_helpers div.'+focused).stop(true, true).fadeIn('slow');
		
	});
	
	$('#signup label').next().bind('blur', function(){
		
		var focused = $(this).attr('id');
		
		$('div#form_helpers div.'+focused).stop(true, true).fadeOut('fast');
		
	});


	// Login Dialog
	$('#login_navigation a.button').bind('click', function(e){
		e.preventDefault();

		$('body').append('<div id="login_dialog"></div>');
		
		$('#login_dialog').dialog({
			draggable: false,
			height: 300,
			width: 400,
			modal: true,
			resizable: false,
			title: 'Enter your details'
		});		
		
	});
	
	$('#login_dialog').live( "dialogopen", function(event, ui) {
		
		$(this).load('../helpers/global/login.htm', function() {
			$('#email').focus();
		});
		
	});
		
});
