function setRoundCorners(){
  $(".rnd").corner("round");
}

function ieOldVersionWarning(){
  if (jQuery.browser.msie && parseInt(jQuery.browser.version) <= 6) {
    $("body").prepend('<div id="browserupdate">U gebruikt een oude versie van Microsoft Internet Explorer. Hierdoor loopt u mogelijk veiligheidsrisico\'s en worden webpagina\'s niet goed getoond.<br /><a href="http://www.microsoft.com/netherlands/windows/products/winfamily/ie/default.mspx" target="_blank">Klik hier om de nieuwste versie te downloaden</a>.</div>');
  }
}

function loadLightbox(){
  $('a.lightbox').lightBox({

    imageLoading: 'pictures/structure/lightbox-ico-loading.gif',
    imageBtnClose: 'pictures/structure/lightbox-btn-close.gif',
    imageBtnPrev: 'pictures/structure/lightbox-btn-prev.gif',
    imageBtnNext: 'pictures/structure/lightbox-btn-next.gif',
    imageBlank: 'pictures/structure/lightbox-blank.gif',
    txtImage: 'Afbeelding',
    txtOf: 'van'
  });
}

$(document).ready(function(){
  setRoundCorners();
  loadLightbox();
  ieOldVersionWarning();
});
