// kampagnenarchiv global.js

$(document).ready(function(){

// popups 
   $('.openpopupwindow').popupWindow({ 
        height: 500, 
        width: 650, 
        top:50, 
        left:50,
        scrollbars: 1
    });
  
// close error or success message
  $('a.messageclose').click(function() {
    $(this).parent().fadeOut(200);
  });  
  
// layout fixes - no dotted outline on hover, focus
  $('a').focus(function() {
      $(this).blur();
  });

// breadcrumb
  $('ul#breadcrumb li:last-child a').css('background-image','none');

// 4col layoutbox nor margin for the last child
    $('div.layoutbox div.fourcol:first-child').css('margin-left','0');
    $('div.playoutbox div.fourcol:first-child').css('margin-left','0');

});
