// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

$(document).ready(function(){  

  
  $("a").focus(function() { 
      $(this).blur();
    })
  
  //$('#labs_menu img').pngfix()
  
  
  
  $("h2#cornerz, h1#cornerz")
    .css({ paddingLeft: 10, paddingRight: 10 })
    .cornerz({radius: 15, corners: "tl", borderWidth: 4, borderColor: "#00CCAA"})
    .cornerz({radius: 15, corners: "tr", borderWidth: 4, borderColor: "black"})
    .cornerz({radius: 15, corners: "br", borderWidth: 4, borderColor: "red"})
    .cornerz({radius: 15, corners: "bl", borderWidth: 4, borderColor: "gray"})
    
    
})


