// JavaScript Document

function alert_box(str)
{
  alert(unescape(str));
}


$(window).ready(function()
{
  //if not in editmode
  if ( !style_edit_mode )
  {
    //hide box title
    $('.c_boxhead').hide();
    //maske zufügen
    $('.box-maske').after('<div class="box_mask"><img src="templates/euf/img/box_mask.gif" alt="Box Maske" /></div>');

    $("img").live("contextmenu",function(e){
        return false;
    });
  }
  
});


