$(document).ready(function(){        
    
    // Fix transparent pngs in IE6/5.5   
    $('img[@src$=.png]').ifixpng();
   	$('#navbox').ifixpng();
   	$('.sidebox').ifixpng();
   	
   	// Optional elements
   	if ($('#ImgContainerRight'))
   	{
   		$('#ImgContainerRight').ifixpng();
   	}
   	
   	if ($('#application_right'))
   	{
   		$('#application_right').ifixpng();
   	}
   	
   	if ($('#schematic_right'))
   	{
   		$('#schematic_right').ifixpng();
   	}
   	
   	if ($('#legend'))
   	{
   		$('#legend').ifixpng();
   	}
    
    if ($('#title'))
   	{
   		$('#title').ifixpng();
   	}
});