var switchCheckbox = function() {
	if($('input[name="remember"]').val() == 'on') {
		$('input[name="remember"]').val('');
		$('#checkboxImg').attr('src','./img/checkbox.gif');
	} else {
		$('input[name="remember"]').val('on');
		$('#checkboxImg').attr('src','./img/checkboxon.gif');
	}	
};

$(document).ready(function() {
	$('#loginform label span').eq(0).html('<img src="./img/checkboxon.gif" id="checkboxImg" alt="" align="top"><input type="hidden" name="remember" value="on" />');
	
	$('#loginform label span').eq(1).addClass('pointer').click(function() {
		switchCheckbox();
	});
	
	$('#checkboxImg').addClass('pointer').eq(0).click(function() {
		switchCheckbox();
	});
});
