$(document).ready(function(){
  $('#tabs').tabs();
  
  $('.imgwrap').hover(function(){  
    $(this).children('.imgcomment').stop().css("top", "9px");}  
       
  , function(){  
    $(this).children('.imgcomment').stop().css("top", '400px');
  });  
  
  
  $('.sharecontent').hide();
  
  $('.sharelink').hover(function(){  
    $(this).children('.sharecontent').show();}  
       
  , function(){  
    $(this).children('.sharecontent').hide();
  });
  
   });

function fbs_click(url, txt) {
  window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(url)+'&t='+encodeURIComponent(txt),'sharer','toolbar=0,status=0,width=626,height=436');
  return false;
  }
  
function tws_click(url, txt) {
  window.open('http://www.twitter.com/home?status='+txt+'+'+url,'sharer','toolbar=0,status=0,width=796,height=436');
  return false;
  }

function dels_click(url, txt) {
  window.open('http://delicious.com/save?url='+encodeURIComponent(url)+'&title='+txt,'sharer','toolbar=0,status=0,width=796,height=436');
  return false;
  }

