if ( jQuery ) (
	function( jQuery ) {
		jQuery.extend( jQuery.fn, {
			modevel: function( options ) {
				jQuery( this ).each( function() {
					settings = jQuery.extend( {
						id             : jQuery( this ).attr( "id" ), 
						script         : 'upload.php', 
						folder         : 'upload'
					}, options );
				} );
				alert( jQuery( "#" + settings.id ).val() );
			}
		} );
	} 
) ( jQuery );