    // Bellas & Sensuais Scripts - ZigsNacK
	$(document).ready(function(){
      $("#content .posttext img").imgr({size:"2px",color:"#c5ac6a",radius:"25px"});
    });
    $(function() {
      $('.imgr,.advcenter .textwidget a img,.widget_inner .textwidget a img,.widget_inner .textwidget img').each(function() {
         $(this).hover(
           function() {
              $(this).stop().animate({ opacity: 0.5 }, 300);
              },
              function() {
              $(this).stop().animate({ opacity: 1.0 }, 300);
              })
         });
     });
     $(function() {
       $('a[title]').qtip({ style:{width:130,padding:5,fontSize:10,background:'#eab706',color:'#7b4a09',textAlign:'center',border:{width:3,radius:3,color:'#ffffff'},tip:'topLeft'} });
     });
     $(document).ready(function() {
       $('img[title]').each(function() {
         $(this).qtip({position:{target:'mouse',adjust:{mouse:true,x:5,y:12}},hide:{fixed:true},
         style: {width:120,padding:3,fontSize:12,background:'#eab706',color:'#7b4a09','font-weight': 'bold',textAlign:'center',border:{width:3,radius:3,color:'#ffffff'},tip:'topLeft'} });
       });
     });
