$(document).ready(function(){
  $('a[rel^=lightbox]').colorbox({maxWidth:'1024',maxHeight:'800'})
  $('#customer-links a.email').colorbox({maxWidth:'1024',maxHeight:'800'});
  $('#menu > ul').superfish( {shadow:false});
  $('#link-newsletter').click(function(){
    $.fn.colorbox({href:'#newsletter', open:true, inline: true, width: "50%", height: "50%"});
    return false;
   });

  // open registration in new window
  //$('#entry-48>a').bind('click', function(){ window.open(this.href); return false; });

  // add rounded corners
  $('#menu>ul>li>a').corner("top 5px cc:#9dc4e5");
  // $('#menu ul ul').corner("bottom 7px");
  // $('#searchform input').corner("4px cc:#9babb0");
});

