// run niftyCorners on specified elements
function runNiftyCorners()
{
  if(NiftyCheck())
  {
    // usage:
    // Rounded[Top|Bottom](css-element, outer-color, inner-color [, "small"])'
    Rounded("div#pagewrapper","#ccc","#64A00D");
  }
}

// jquery: table striping / row highlighting
// run on all tables with class=='stripeMe'
// striping by adding css class 'alt' to even rows
// row highlighting by adding class 'over' to current row
$(document).ready(function(){
  $(".stripeMe tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
  $(".stripeMe tr:even").addClass("alt");
});

$(document).ready(function() {
  runNiftyCorners();
});


