/**
 * jQuery GigaCast Helper
 * @copyright Martin 'Smasty' Šrank, http://smasty.net
 **/
function ghelp_show(el){
  $('.ghelp-'+el).fadeIn(400);
}
function ghelp_hide(el){
  $('.ghelp-'+el).fadeOut(400);
}
function ghelp_make(element,t,l,direction){
  $('.'+element).hide();
  var content=$('.'+element).html();
  $('#wrap').append('<div class="ghelp ghelp-'+element+' '+direction+'" style="top:'+t+'px;left:'+l+'px"><span class="arrow"></span><span class="icon"></span><div>'+content+'</div><a href="#" class="hide" onclick="ghelp_hide(\''+element+'\'); return false">×</a></div>');
  $('.ghelp-'+element).hide();
}