/*
 * 	PluginName- jQuery plugin
 *	written by AuthorName	
 *	URL
 *
 *	Copyright (c) 2010 AuthorName (AuthorURL)
 *	Dual licensed under the MIT (MIT-LICENSE.txt)
 *	and GPL (GPL-LICENSE.txt) licenses.
 *
 *	Built for jQuery library
 *	http://jquery.com
 *
 */
 
/*
 *	markup example
 */
(function($){  
	$.fn.PluginName = function(options) {  
		// Default Values
		var defaults = {  
			// height: 500, width: 500
		};  
		var options = $.extend(defaults, options);  
		
		// Internal Variables
		var aVariable;
		
		return this.each(function() {  
			// Initializing Code
			var obj = $(this);
			
			// Event Bindings
			$("a", obj).click(function (){	
				// Click Code											  
			});
		
			// Plugin Methods
			function aMethod() {		
				// Method code	
			};	
			
			// Timed Events
			// timeout = setTimeout(function, 10000); 
		});
	};  
})(jQuery);  




