jQuery.noConflict();

jQuery(document).ready(function() {


  /* new site - add padding to startbox images - this is done with css instead... but does not work in IE6... who cares...*/
  /*
  jQuery('#wrapper .section_object_startbox_image').each(function(index) {
    jQuery(this).next('h2').css("margin-top", "10px");
  });
  */

  /* old site - remove linked images bg-color */
  jQuery('#outer_container img').each(function(index) {
    jQuery(this).parent().addClass('no_border');
  });

});

function doAjaxRequest(pars, div, callback) {
  jQuery.ajax({
    type: "POST",
    url: "?",
    data: pars,
    success: callback
  });
}
