jQuery.noConflict();
jQuery(document).ready(function() {
	 jQuery('.btn-remove').mouseover(function(){
	    jQuery(this).attr('src','/images/close-over.png')
		}).mouseout(function(){
		jQuery(this).attr('src','/images/close.png')
		});
});

function clean(text) {
     if (text.value == text.defaultValue) {
         text.value = ""
     }
}
