<!--
if (!window.opera) {
	try {
			document.execCommand("BackgroundImageCache", false, true);
	} catch(err) {}
}

$(document).ready(
	function() {
		$('#add_field').click(function(){
			fields = $(this).parent().find('input');
			$(this).before("<input type='file' class='form_input' name='file"+(fields.length+1)+"'>");
			return false;
		});
	}
);

// -->
