// jQuery Code

jQuery(document).ready(function($) {
	
	// just add class="autoclear" to your input
$(".autoclear").click(function() {
	if($(this).val() == $(this).attr('defaultValue')) $(this).val("");
});
// if the user enters nothing, this will restore default text
$(".autoclear").blur(function() {
	if($(this).val() == "") $(this).val($(this).attr('defaultValue'));
});

	if ($('.additional-images-list').length > 0) {
	
		
	
	}
	
	
});