var imgPath = "/Portals/_default/Skins/Tuhoe/img/nav2/";

jQuery(document).ready(
 function() {
     // main nav img swap on hover
     jQuery("#nav img.imgon").attr("src", imgPath + jQuery("#nav img.imgon").attr("name") + '_on.gif');
     jQuery("#nav img").not("#nav img.imgon").hover(
        function () { jQuery(this).attr("src", imgPath + jQuery(this).attr("name") + '_on.gif') },
        function () { jQuery(this).attr("src", imgPath + jQuery(this).attr("name") + '.gif') }
     );
     //search button swap text with img
     jQuery("#search a.search").html('').addClass('searchbutton');

     // Hook share this links
     //var object = SHARETHIS.addEntry({ title: 'share', summary: 'Sharing is good.' }, { button: false });
     //object.attachButton(document.getElementById('sharelinkhdr'));
     //object.attachButton(document.getElementById('sharelinkfooter'));
 });
 /*
   function disqus_callback(){
     document.getElementById('dsq-new-post').innerHTML = document.getElementById('dsq-new-post').innerHTML.replace('<h3>Add New Comment</h3>','<h3>Add New Comment</h3><p>To add a comment, please register using the form below. <a onclick="Dsq.Popup.login(); return false" href="#">Click here to login with your Disqus profile</a> or click the Disqus button below.</p>');
     document.getElementById('dsq-authenticate').innerHTML = document.getElementById('dsq-authenticate').innerHTML.replace('Required: Please login below to comment..','');
  } 
 */
 function getPrintButton() {
    document.write('<a href="#print" title="Print page" onclick="window.print()"><img src="' + imgPath + 'print.gif" width="25" height="21" alt="Print page" /></a>');
}
// var disqus_developer = 1;
