/* <![CDATA[ */
$(document).ready(function(){
    $("#leftside ul li").hover(
      function () {
        $(this).addClass('hover');
      }, 
      function () {
        $(this).removeClass('hover');
      }
    );
    $("#top_navigation li a").hover(
      function () {
        $(this).addClass('hover');
      }, 
      function () {
        $(this).removeClass('hover');
      }
    );

//    $('a').tooltip({ 
//        showURL: true, 
//        bodyHandler: function() { 
//            return $("<div/>").html('<strong>'+$(this).text()+'<\/strong>'); 
//        } 
//    });

//    $('#left_content li').tooltip({ 
//        showURL: true, 
//        bodyHandler: function() { 
//            return $("<div/>").html($(this).html()); 
//        } 
//    });   

//   $(".post a").fancybox({
//        'speedIn'		:	600, 
//        'speedOut'		:	200, 
//        'overlayShow'	:	true
//    });

});
/* ]]> */
