$(document).ready(function(){

	// Apply date apacity
	$(".event_date").css({opacity: 0.30});

	// Apply description apacity
	$(".event_photo_desc").css({opacity: 0.85});
	$(".comment-author").css({opacity: 0.50});

	// Apply description apacity
	$("#togglePhotoForms").click(function() {
//		$("#photoForms").slideToggle('600');
		addPhotoForm();
		return false;
	});
	

});



function addPhotoForm() {
	var id = document.getElementById("id").value;
	$("#photoForms").append("<p id='row" + id + "'><label for='eventimage" + id + "'>Photo " + id + "</label> <input name='eventimage" + id + "' id='eventimage" + id + "' type='file' size='50'/><br /><textarea name='event_photo_desc' id='event_photo_desc' rows='1' cols='20' class='event_photo_desc'>Enter photo description</textarea><br /><a href='#' onClick=\"removeFormField('#row" + id + "'); return false;\">Remove</a></p>");
	id = (id - 1) + 2;
	document.getElementById("id").value = id;
}



function removeFormField(id) {
	$(id).remove();
	var id = document.getElementById("id").value;
	id = id - 1;
	document.getElementById("id").value = id;
	
}

