﻿
//on load anonymous javascript functions
   $(document).ready(function() {  

        //png fixes for IE
        //all on page pngs
        $('img[@src$=.png]').ifixpng();
        //css background images 
       $('#statement').ifixpng();
       $('#logo a').ifixpng();
   	   //apply base class to html element when JS enabled ()
	    $("html").addClass("js");   	

  
   });
	
    	
	
	
	