/**** Add application wide javascripts below this point  ******/
$(document).ready(function() {
  $(document).pngFix();
  
  $('#size-selector').change(function(){
    window.location=$(this).attr('value');
  });
  
  $('A[rel="external"]').click(function(){
    window.open($(this).attr('href'));
    return false;
  });
});