$.fn.scrollme = function(ext_options) {
	$('.ima_move').slideUp(250);
	$.get(ext_options.link+'.html', function(response){
		$('.ima_move').html(response).slideDown(450);
	});
	
}
