jQuery.noConflict(); 
jQuery(document).ready(function(){
	rebond = function()
			{
				jQuery("#image").fadeIn(600)
								.animate({top:"-=150px"},100)
								.animate({top:"+=160px"},100)
								.animate({top:"-=40px"},100)
								.animate({top:"+=40px"},100)
								.animate({top:"-=5px"},100)
								.animate({top:"+=5px"},100)
								.animate({top:"-=2px"},100)
								.animate({top:"+=2px"},100);
			};
	jQuery("#url_image").click( function(){
		
		jQuery(this).attr("value","");

			});
});

