jQuery(document).ready(function() {

    $("div#col1_content h1").each(function(){
       var span = $(this).find('span');
       if (span.size() < 1)
       {
           $(this).wrapInner('<span>', '</span>');
       }
    });
    $("h1 span").shadow({color: "white"});

    $("div.boxhead_3col h2 span").shadow({color: "white"});

    //$(document).pngFix();

    $("span.shippingcosts a").fancybox({
        'width'             : '75%',
        'height'            : '50%',
        'autoScale'         : false,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'type'              : 'iframe'
    });

    $("a.internal-fancybox-iframe").fancybox({
        'width'             : '90%',
        'height'            : '90%',
        'autoScale'         : true,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'type'              : 'iframe'
    });

    $("a.external-fancybox-iframe").fancybox({
        'width'             : '90%',
        'height'            : '90%',
        'autoScale'         : true,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'type'              : 'iframe'
    });
});
