var BASEPATH = '/';
window.addEvent('domready', function(){

  var myTips = new Tips('a.tips', {
    text: 'rel',
    className: 'tips'
  });


  if ( $('myFckContact') ) {
    var fck = new FCKeditor('myFckContact');
    fck.BasePath = BASEPATH + 'scripts/fckeditor/';
    fck.Config['CustomConfigurationsPath'] = BASEPATH +'scripts/fckeditor/fckconfig.guest.js';
    fck.ToolbarSet = 'myToolBar';
    fck.Height = '500';
    fck.Width = '600';
    fck.ReplaceTextarea();
  }

  if ( $$('a.imgLink').length > 0 ) {
    ReMooz.assign('a.imgLink', {
      'origin' : 'img',
      'shadow' : 'onOpenEnd',
      'resizeFactor' : 0.9,
      'cutOut' : false,
      'opacityResize' : 0.4,
      'draggind' : false,
      'centered' : true
    });
  }
});
