;(function($){
	$.extend({
		jqWebSite: function(options) {
			return {
				init: function(options) {
					settings = jQuery.extend({
						//name: options.name,
						lang: options.lang
					}, options);
					
					return this;
				},

				// MenuLateral : Exibe os itens do menu accordion
				// -----------------------------------------------------------------
				MenuLateral: function(p) {
					$('#navigation').accordion({
						active: -1,
						autoheight: false,
						alwaysOpen: false,
						header: '.head',
						navigation: true
					});	
				},// end : MenuLateral


				// ZoomGaleria : Exibe a imagem no div maior
				// -----------------------------------------------------------------
				ZoomGaleria: function(p) {
					$(".zoomImg").click(function(){
						$image	= $(this).attr('href');

						$("#imgZoom").html("<img src=\""+ $image +"\" width=\"304\" height=\"405\" border=\"0\">");
						return false;
					
					});
				},// end : ZoomGaleria


				um: function() { 
					alert('um ' + settings.name )
				},

        dois: function() {
					alert('dois ' + settings.id)
				}

			};
		}()
	});
})(jQuery);



