// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
Event.observe(window, 'load', function() {
  $$('#nav ul li:first-child').each(function(li) {
    li.addClassName('first');
  });
  
  $$('#nav ul li:last-child').each(function(li) {
    li.addClassName('last');
  });
  
  $$('#contentRight .sub_box').each(function(ele, i) {
    $(ele).addClassName('box_'+ (i+1));
  });
});