/**
 * @name       jQuery.drawer
 * @version    1.00, 2008/05/01
 * @author     inamorix <inamorix@metatype.jp>
 * @copyright  Copyright (c) 2008, metatype.jp.
 * @license    The MIT-style license.
 */

(function($,loaded){$.extend({drawer:{init:function(){this.self=null;this.closer='<div id="drw_close"><a href="#" class="drw_close" title="Fermer">Fermer</a></div>';this.loader='<div id="drw_loader">chargement...</div>';this.setTabs();$('#drw').html('<div id="drw_content"></div>');},setTabs:function(){$('a[rel*=drw]').each(function(){$('#'+this.href.split('#')[1]).hide();$(this).click(function(){$.drawer.close(($.drawer.self!=this)?this:null);this.blur();return false;});});},open:function(){var content=$('#drw_content').empty();$('#drw_tabs_focus').removeAttr('id');if(!this.self)return;this.self.id='drw_tabs_focus';loaded=/(#[\w\-]+)$/.test(this.self.href);content.append(loaded?$(RegExp.$1).clone().show():this.loader);content.append(this.closer);content.find('.drw_close').click(function(){$.drawer.close(null);this.blur();return false;});content.css({marginTop:content.height()*-1}).animate({marginTop:0},function(){if(!loaded){$.ajax({url:$.drawer.self.href,type:'GET',dataType:'html',cache:false,success:function(html){if(!loaded){content.prepend('<div id="drw_ajax"></div>');$('#drw_ajax').hide().append(html);$('#drw_loader').animate({height:$('#drw_ajax').height()},function(){$('#drw_loader').fadeOut(function(){$('#drw_ajax').fadeIn();});});}}});}});},close:function(el){loaded=true;this.self=el;var content=$('#drw_content');content.animate({marginTop:content.height()*-1},function(){$.drawer.open();});}}});$(function(){$.drawer.init();});})(jQuery);