/**
 * Your plugin name and a small description
 * Link to the project page and/or repositorry
 * Copyright (c) 2009 Your Name, licensed under Your License
 */
(function($){
    /**
     * Extending jQuery namespace,
     * we could add public funtions here
     */
    $.pluginName = {
        // Default options that can be easily changed
        defaults: {
            option1: "value",
            option2: "something"
        },

        makeSomething1: function(){
	
        },
        makeSomething2: function(){
	
        }
    };

    /**
     * Public method
     * Usage $('selector).doSomething(optionArray);
     */
    $.fn.doSomething = function(options){
        // Extend default options
        var options = $.extend({}, $.pluginName.defaults, options);

        return this.each(function(){
            // Add jQuery methods to the element
            var $this = $(this);

            // do something

        });
    }

    /**
     * Function that is not accessible from the outside
     */
    function someFunction1(){
    }
})(jQuery);
