* @license CCAttribution-ShareAlike 2.5 Brazil - http://creativecommons.org/licenses/by-sa/2.5/br/deed.en_US\r\n
* @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin\r\n
*/\r\n
\r\n
// Offering a Custom Alias suport - More info: http://docs.jquery.com/Plugins/Authoring#Custom_Alias\r\n
(function($) {\r\n
\t/**\r\n
\t * $ is an alias to jQuery object\r\n
\t *\r\n
\t */\r\n
\t$.fn.lightBox = function(settings) {\r\n
\t\t// Settings to configure the jQuery lightBox plugin how you like\r\n
\t\tsettings = jQuery.extend({\r\n
\t\t\t// Configuration related to overlay\r\n
\t\t\toverlayBgColor: \t\t\'#000\',\t\t// (string) Background color to overlay; inform a hexadecimal value like: #RRGGBB. Where RR, GG, and BB are the hexadecimal values for the red, green, and blue values of the color.\r\n
\t\t\toverlayOpacity:\t\t\t0.8,\t\t// (integer) Opacity value to overlay; inform: 0.X. Where X are number from 0 to 9\r\n
\t\t\t// Configuration related to navigation\r\n
\t\t\tfixedNavigation:\t\tfalse,\t\t// (boolean) Boolean that informs if the navigation (next and prev button) will be fixed or not in the interface.\r\n
\t\t\t// Configuration related to images\r\n
\t\t\timageLoading:\t\t\t\'images/lightbox-ico-loading.gif\',\t\t// (string) Path and the name of the loading icon\r\n
\t\t\timageBtnPrev:\t\t\t\'images/lightbox-btn-prev.gif\',\t\t\t// (string) Path and the name of the prev button image\r\n
\t\t\timageBtnNext:\t\t\t\'images/lightbox-btn-next.gif\',\t\t\t// (string) Path and the name of the next button image\r\n
\t\t\timageBtnClose:\t\t\t\'images/lightbox-btn-close.gif\',\t\t// (string) Path and the name of the close btn\r\n
\t\t\timageBlank:\t\t\t\t\'images/lightbox-blank.gif\',\t\t\t// (string) Path and the name of a blank image (one pixel)\r\n
\t\t\t// Configuration related to container image box\r\n
\t\t\tcontainerBorderSize:\t10,\t\t\t// (integer) If you adjust the padding in the CSS for the container, #lightbox-container-image-box, you will need to update this value\r\n
\t\t\tcontainerResizeSpeed:\t400,\t\t// (integer) Specify the resize duration of container image. These number are miliseconds. 400 is default.\r\n
\t\t\t// Configuration related to texts in caption. For example: Image 2 of 8. You can alter either "Image" and "of" texts.\r\n
\t\t\ttxtImage:\t\t\t\t\'Image\',\t// (string) Specify text "Image"\r\n
\t\t\ttxtOf:\t\t\t\t\t\'of\',\t\t// (string) Specify text "of"\r\n
\t\t\t// Configuration related to keyboard navigation\r\n
\t\t\tkeyToClose:\t\t\t\t\'c\',\t\t// (string) (c = close) Letter to close the jQuery lightBox interface. Beyond this letter, the letter X and the SCAPE key is used to.\r\n
\t\t\tkeyToPrev:\t\t\t\t\'p\',\t\t// (string) (p = previous) Letter to show the previous image\r\n
\t\t\tkeyToNext:\t\t\t\t\'n\',\t\t// (string) (n = next) Letter to show the next image.\r\n
\t\t\t// Don\xb4t alter these variables in any way\r\n
\t\t\timageArray:\t\t\t\t[],\r\n
\t\t\tactiveImage:\t\t\t0\r\n
\t\t},settings);\r\n
\t\t// Caching the jQuery object with all elements matched\r\n
\t\tvar jQueryMatchedObj = this; // This, in this context, refer to jQuery object\r\n
\t\t/**\r\n
\t\t * Initializing the plugin calling the start function\r\n
\t\t *\r\n
\t\t * @return boolean false\r\n
\t\t */\r\n
\t\tfunction _initialize() {\r\n
\t\t\t_start(this,jQueryMatchedObj); // This, in this context, refer to object (link) which the user have clicked\r\n
\t\t\treturn false; // Avoid the browser following the link\r\n
\t\t}\r\n
\t\t/**\r\n
\t\t * Start the jQuery lightBox plugin\r\n
\t\t *\r\n
\t\t * @param object objClicked The object (link) whick the user have clicked\r\n
\t\t * @param object jQueryMatchedObj The jQuery object with all elements matched\r\n