$(document).ready(function() {
 // zebra striping
 $(".news-list tr:even").addClass("dark");

 /* Fix PNG transparency in IE 6 */
 $('img[src$=.png], #logo a').ifixpng();
 
 /* open new links in a popup window */
 $('a[rel=new]').click(function() {
  window.open($(this).attr('href'));
        return false;
 });

 /* setup the main menu */
// $('#navigation.sf-menu ul').superfish({
//  autoArrows:  false,
//  dropShadows: false,
//  disableHI:  true
// });
// 
//	
// $('#navigation ul:first > li:lt(5)').addClass('main'); // add class to important nav items
});
