jQuery(document).ready(function($) {

	$('#commentform').checkForm();

	/* 
	 * Changing backgrounds on focus/blur for comment form input fields
	 */
	$('#author').focus(function() {
		$(this).css('background','none');
	});
	$('#author').blur(function() {
		if ($.trim(this.value) == '') {
			$(this).css('background','url(http://albi.hk/wp-content/themes/albi/images/input-author.png)');
		}
	});
		$('#email').focus(function() {
		$(this).css('background','none');
	});
	$('#email').blur(function() {
		if ($.trim(this.value) == '') {
			$(this).css('background','url(http://albi.hk/wp-content/themes/albi/images/input-email.png)');
		}
	});
	$('#url').focus(function() {
		$(this).css('background','none');
	});
	$('#url').blur(function() {
		if ($.trim(this.value) == '') {
			$(this).css('background','url(http://albi.hk/wp-content/themes/albi/images/input-url.png)');
		}
	});


});

