﻿// General JS functions

jQuery(document).ready(
    function()
    {
        jQuery(document).pngFix(); 
        jQuery("#ImageContainer img").fadeTo(1, 0.75);
        jQuery.fn.canvasSwap.defaults.suffix = '_over';
        jQuery.fn.canvasSwap.defaults.opacity = 0.75;
	    jQuery.fn.canvasSwap.defaults.ie6_support = true;
    	jQuery('#ImageContainer img').canvasSwap();
    }
);
