hoy = new Date();
dia=hoy.getDate();
mes=hoy.getMonth();
ano=hoy.getYear();
mes=(mes+1);
if (dia<=9){
	dia='0'+dia;
}

if (mes<=9){
	mes='0'+mes;
}

valor='10'+''+mes+''+dia;
document.write('<img src="http://picayune.uclick.com/comics/cond/2010/cond'+valor+'.gif">');