function bookmarksite(object){
  if(document.all){
    window.external.AddFavorite(object.href , object.title);
    return false;
  }
   return true;
}

function getCurrentPic() {
  var pic = $('.currentPic');
  var adress = pic.css('background-image');
  if( pic.length == 1 ) return "<img src="+adress.slice(4,adress.length-1)+" class='center' />";
  return "";
}

function printIt(getSlug){
    var getTitle = $('#B h1').html();
    $('.recursos_do_texto').remove();
    $('#B .txt *').removeClass();
    $.post("print.php",{
        title: getTitle,
        content: getCurrentPic()+ $('#B .txt').html(),
        siteName: 'Stile V - Moda íntima feminina',
        siteURL: 'http://www.stilev.com.br',
        slug: getSlug
    },function(html){
        $('body *').css('display','none');
        $('body').css('background','transparent none');
        $('body').append('<div id="print"><!-- --></div>');
        $('#print').css('display','block');
        $('#print').html(html);
    }
    );
  }

$(function(){
    $("#cabecalho input.parametros").focus(function(){ $(this).css('background-position','100px 100px'); });
    $("#cabecalho input.parametros").blur( function(){ if( $(this).val().length == 0 ) $(this).css('background-position','7px 3px'); });
    $(".mask1, .mask2, .mask3").ifixpng();
 });
