jQuery(document).ready(function() {
	var toptools_utext = $('#toptools_username_text').text();
	var toptools_pimage = $('#toptools_password_image').text();
	
	$('#toptools_username').focus(function() {
		if ($('#toptools_username').val() == toptools_utext) {
			$('#toptools_username').val('');
		}
	});

	$('#toptools_password').focus(function() {
		$('#toptools_password').css('background-image', 'none');
		$('#toptools_password').css('background-color', '#fff');
	});

	$('#toptools_username').blur(function() {
		if (!$('#toptools_username').val()) {
			$('#toptools_username').val(toptools_utext);
		}
	});

	$('#toptools_password').blur(function() {
		if (!$('#toptools_password').val()) {
			$('#toptools_password').css('background-color', 'transparent');
			$('#toptools_password').css('background-image', 'url(' + toptools_pimage + ')');
		}
	});

	if (!$('#toptools_username').val()) {
		$('#toptools_username').val(toptools_utext);
	}
	if (!$('#toptools_password').val()) {
		$('#toptools_password').css('background-color', 'transparent');
		$('#toptools_password').css('background-image', 'url(' + toptools_pimage + ')');
	}
});
