/**
 *  ///// Antistatique.net
 *  Large Type Action
 *  
 * @author Marc Friederich mfh@antistatique.net
 * @copyright Antistatique.net Sàrl, 2009, All Right Reserved. 
 * @version 0.1 - $Id$
 * @required jQuery 1.2s
 * @required pngFix
 */
$(document).ready(function() {
  try{
     // Fix transparency PNG images in IE 5.5 / 6
     $(document).pngFix();
  } catch(e) {};
  
  $(".largeTypeAction").click(function(e) {
      // if(!WebKitDetect.isWebKit() && !WebKitDetect.isMobile()) {
       $("body").append(
       $('<div>').attr('id', 'largeTypeAction').html($('<span>').text($(this).text())).fadeIn("fast").one('click',
       function() {
         $(this).remove();
       }));
       return false;  
     // }
  });
});




