$(function (){	    $('form#contato fieldset label').each(function() {        $Color = $(this).css('color') == undefined ? '#857b6f' : $(this).css('color');        $Size = $(this).css('fontSize') == undefined ? '11' : parseInt($(this).css('fontSize'));        $(this).pir({            font: "Helvetica.ttf",            wrap: true,            color: $Color,            size: $Size ,            php: baseUrl + '/default/imagens/pir.php'        });		    });    $('span#apresentamos,span#nome_produto').each(function() {        $Color = $(this).css('color') == undefined ? '#857b6f' : $(this).css('color');        $Size = $(this).css('fontSize') == undefined ? '11' : parseInt($(this).css('fontSize'));        $(this).pir({            font: "HelveticaNeue Thin.ttf",            wrap: true,            color: $Color,            size: $Size ,            php: baseUrl + '/default/imagens/pir.php'        });    });    $('').each(function() {        $Color = $(this).css('color') == undefined ? '#e34933' : $(this).css('color');        $Size = $(this).css('fontSize') == undefined ? '11' : parseInt($(this).css('fontSize'));        $(this).pir({            font: "HelveticaBd.ttf",            color: $Color,            size: $Size ,            wrap: true,            php: baseUrl + '/default/imagens/pir.php'        });    });    $('.title-list.produtos-interna span').each(function() {        $Color = $(this).css('color') == undefined ? '#e34933' : $(this).css('color');        $Size = $(this).css('fontSize') == undefined ? '11' : parseInt($(this).css('fontSize'));        $(this).pir({            font: "Helvetica35Thin2.ttf",            color: $Color,            size: $Size ,            wrap: false,            php: baseUrl + '/default/imagens/pir.php'        });    });		})
