

function favoris(url, title) {
  if ( navigator.appName != 'Microsoft Internet Explorer' )
    { window.sidebar.addPanel(title,url,""); }
  else { window.external.AddFavorite(url,title); }
  return false;
}




$j(document).ready(function() {

  $j(".item").each(function (i) {
          
          $j(this).addClass('isLink');
          $j(this).click(function (i) {
            document.location = $j(this).find('h2 a').attr("href");
          });
      
      });

  $j(".tipReady[alt], .tipReady[title]").qtip({
          style: {
            name: 'dark',
            tip: true,
            padding: '5px 10px',
            backgroundColor: 'white',
            border: {
               width: 5,
               radius: 3,
               color: '#B19967'
            },
            color: '#28211B'

            },
          position: {
          corner: {
             target: 'rightMiddle',
              tooltip: 'leftMiddle'
            }
         },
         show: {
          delay: 0,
          
          effect: {
            length: 0,
            type: 'slide'
            }
         }

          
  });
  
  $j('#topSearch').mouseover(function(){
      $j('.advancedForm').css('display', 'block')
  });
  
  $j('#topSearch').mouseout(function(){
      $j('.advancedForm').css('display', 'none')
  });
  

});






