
function addImage()
{
	$('#images tbody').append('<tr>\n<td>New image</td>\n<td><input type="file" value="asd" name="images[]" /></td>\n</tr>');
}
function  timeExam()
 {
$.ajax({
url : "time.php",
success : function (data) {
$("#time").html(data);
}
});
setTimeout("timeExam()", 1000);
 }