// Load jQuery
google.load("jquery", "1.3.2");

// Run jQuery through Google code //
google.setOnLoadCallback(function() {
    
    $(document).ready(function() {
        // Set each of the home panels to be equal height //
       equalHeight($(".panel"));
       
       $("div.rounded-corners > img").each(function(id){
            $(this).parent("div.rounded-corners").height( $(this).height() );
        })
       
       $(".rounded-corners img").corner("40px");
   })
    
}); 
