$jQ = jQuery.noConflict();

$jQ(document).ready(function() 
{
	$jQ('.container').click(function(){  
			if($jQ('#content_tooltip').data("qtip")) $jQ('#content_tooltip').qtip("hide");
	});

	$jQ('#close_tooltip').live('click', function() {
		$jQ('#content_tooltip').qtip("hide");
	});
	
    $jQ('#content_tooltip')
      .click(function()
      {       
		if($jQ(this).data("qtip")) $jQ(this).qtip("destroy");
         $jQ(this).qtip({
               content: '<p>Blogging Policy:<br /><br />* We will tell the truth and correct any mistakes promptly.<br />* We will not delete comments unless they are profane, spam, off-topic, defamatory or thread spamming (you\'ve posted this same comment elsewhere on the site).<br />* We will reply to comments when appropriate as quickly as possible.<br />* We will disagree with other opinions respectfully.<br /><br />Comments are welcome anytime; however, please note that your comment needs to be approved by the site owner before it will appear. The site owner generally operates between 9 am and 6 pm ET Monday - Friday. Thanks for your patience.</p><p id="close_tooltip" style="font-weight:bold;color:#01AEF0;cursor:pointer;text-align:right;">close</p>  ', 
               position: {
                  corner: {
                     tooltip: 'leftMiddle', 
                     target: 'rightMiddle' 
                  }
               },
               show: {
                  when: false, 
                  ready: true 
               },
               hide: true, 
               style: {
                  border: {
                     width: 1,
                     radius: 5,
					 color: '#01AEF0'
                  },
                  padding: 10, 
                  textAlign: 'left',
                  tip: true, 
				  width:500,
                  name: 'light'
               }
            });
      });
	
});
