$(document).ready(function() {
	$('#form-login .box-field label').css({'position':'absolute'})
	
	$('#form-login .box-field input').focus(function(){
		$(this).parent().find('.field-label').hide();
	}).blur(function(){
		if( $(this).val() == '' ){
			$(this).parent().find('.field-label').show();
		}
	});
	
	$('#form-login .submit input')
	.mouseenter(function(){
		$(this).addClass('over');
	}).mouseleave(function(){
		$(this).removeClass('over');				
	});
});