$(document).ready(function(){
  Cufon.replace($('h2, h3'), { 
    fontFamily: 'Museo Sans',
    hover: true 
  });
  $('h2, h3').css({'margin':'0 0 0 -3px'})
  $('#grid a').click(function(){
    if($(this).hasClass('active')){
      $('#container').css({'background':'none'});
      $(this).removeClass('active');
    }else{
      $('#container').css({'background':'url(/images/vgs/grid.png) repeat'});
      $(this).addClass('active');
    }
  });
  
});





