$(document).ready(function(){
	$("#loaned_date").datepicker({ dateFormat: 'dd-mm-yy' });
	$("#remind_date").datepicker({ dateFormat: 'dd-mm-yy' });
	$('#send_reminder').click( function() {
		if( $('#send_reminder').is(':checked') ) {
			if( $("#remind_date").attr('value') == '' ) {
				//$("#remind_date").datepicker('setDate','+14d');
			}
		} else {
			$("#remind_date").attr('value','');
		}
	});
	$('#email').focus( function() {
			if($("#email").attr('value') == 'email'){
				$(this).attr('value','');
			}
	});
	$('#password').focus( function() {
			if($("#password").attr('value') == 'password'){
				$(this).attr('value','');
			}
	});

	$('#textbox,.disabled').focus(function() {
		if( $(this).attr('value') == $(this).attr('alt') ) {
			$(this).attr('value','');
			$(this).attr({className: 'textbox'});

		}
	});

	$('#textbox,.disabled').blur(function() {
		if($(this).attr('value') == '' ) {
			$(this).attr('value',$(this).attr('alt'));
			$(this).attr({className: 'disabled'});
		}
	});
});

