////////// EMAIL()
function email(name,domain,linktext,style) {
  var address = name+(String.fromCharCode(64))+domain;
  if(linktext == '') {
    linktext = address;
  }
  document.write('<a href="ma'+'ilto:'+address+'" onmouseout="window.status=\'\'; return true;" onmouseover="window.status=\'Verstuur email\'; return true;" style="'+style+'">'+linktext+'</a>');
}
////////// JQUERY DOCUMENT READY
var $JQ = jQuery.noConflict();
$JQ(document).ready(function(){
  $JQ('div.rounded').css('position','relative');
  var rounded = '\n                <img src=\"/artwork/rounded-top-left.png\" width=\"5\" height=\"5\" alt=\"\" title=\"\" class=\"rounded-top-left\" style=\"z-index: 100;\" />\n';
  rounded += '                <img src=\"/artwork/rounded-top-right.png\" width=\"5\" height=\"5\" alt=\"\" title=\"\" class=\"rounded-top-right\" style=\"z-index: 100;\" />\n'
  rounded += '                <img src=\"/artwork/rounded-bottom-left.png\" width=\"5\" height=\"5\" alt=\"\" title=\"\" class=\"rounded-bottom-left\" style=\"z-index: 100;\" />\n'
  rounded += '                <img src=\"/artwork/rounded-bottom-right.png\" width=\"5\" height=\"5\" alt=\"\" title=\"\" class=\"rounded-bottom-right\" style=\"z-index: 100;\" />'
  $JQ('div.rounded').prepend(rounded);
});

