
var $j = jQuery.noConflict();

$j(document).ready( function() {
     $j('#second_title').css("cursor", "pointer").click(function() {
          if ( ($j('#second_section').css("display")) == "none") {
          $j('#second_section').slideDown('fast', function() {   });
          $j(this).css("background-position","0 -11px");
     } else {
       $j('#second_section').slideUp('fast', function() {   });
       $j(this).css("background-position","0 0px");
     }
   });
   
 }); 
 


 /*
  var blank = new Image();
 blank.src = '/iepngfix/blank.gif';
 
   var badBrowser = (/MSIE ((5\.5)|6)/.test(navigator.userAgent) && navigator.platform == "Win32");
   if (badBrowser) {
     // get all pngs on page
     jQuery('img[src$=.png]').each(function() {
       if (!this.complete) {
         this.onload = function() { fixPng(this) };
       } else {
         fixPng(this);
       }
     });
   }

 function fixPng(png) {
   // get src
   var src = png.src;
   // set width and height
   if (!png.style.width) { png.style.width = $j(png).width(); }
   if (!png.style.height) { png.style.height = $j(png).height(); }
   // replace by blank image
   png.onload = function() { };
   png.src = blank.src;
   // set filter (display original image)
   png.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "',sizingMethod='scale')";
 }
*/



