var delay_dropdown_show=500;
var delay_dropdown_hide=250;

$(document).ready(function(){
	/*$('#nav li').hover(
		function() { $(this).addClass("dropdown"); $('ul', this).slideDown(delay_dropdown_show); },
		function() { $('ul', this).slideUp(delay_dropdown_hide); $(this).removeClass("dropdown"); }
	);*/
    
    if ($("#clearFile") != null) {
        $("#clearFile").click(function(e) {
            e.preventDefault();
            var clearFileEl = $(e.target).attr("fileclear"); 
            var fileElement = $("input[name$=\"" + clearFileEl + "\"]")
            fileElement.replaceWith("<input type='file' name='" + clearFileEl + "' />");
        });
    }
});
