jQuery(document).ready(function() {

    $("div#col3_content h2").each(function(){
       var span = $(this).find('span');
       if (span.size() < 1)
       {
           $(this).wrapInner('<span>', '</span>');
       }
    });
    /*$("div#col2_content h2").each(function(){
        var span = $(this).find('span');
        if (span.size() < 1)
        {
            $(this).wrapInner('<span>', '</span>');
        }
    });*/

    //$(document).pngFix();

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

