/**

 * @author Scott

 */



$(document).ready(function() {

  // hide away tabbed ProductDescriptionHeader divs

  $("div[id^='ProductDescriptionHeader']").hide();

  // move the head up a bit in ie
  if($.browser.msie){
    $('.head').css('margin-top', '0px');
  }

});