frontend = {};
frontend.init = function() {
    $("div.tabs > ul").tabs();    
    $('#content img').not('.with-corners').addClass('content-image');
    $('#left img').not('.with-corners').addClass('left-image');
}
$(document).ready(frontend.init);

$(window).bind('load', function() {
    $("img.content-image, #header-image img, #slideshow img").not('.with-corners').each(function() {
      $(this).wrap(function(){
          return '<span class="' + $(this).attr('class') + '" style="background:url(' + $(this).attr('src') + ') no-repeat center center; width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px;" />';
      }).addClass('content-image-rounded-corner');
    });
});
