$(document).ready(function(){
	$(".defaultValue").focus(doClear);
	$(".defaultValue").blur(doDefault);
	$(".calendar").simpleDatepicker();
	$(".calendar").each(function(){
		$this = this;
		$(this).after($('<img alt="" src="/pics/cal.jpg"/>').simpleDatepicker({target:$this}));
	});
});