// Initializes all textareas with the tinymce class
$().ready(function() {

if($.cookie('promotie') < 0)
{
    $('#cloz+a').hide().prev().hide();   
}
else
{
$('#cloz').parent().show();
$('#cloz')
.css('left', $('#cloz').parent().width()/2 + 150)
.css('top', $('#cloz+a').position().top + 10)
.unbind('click')
.click(function()
{
  $('#cloz+a').hide().prev().hide();
   $.cookie('promotie', -1);      
})

}

});