$(document).ready(function() {
  $("a.effect div,#header a div,div.sidebox li a div,.gallery img")
  .hover(
    function() {
      $(this).fadeTo(550, 0.5);
    },
    function() {
      $(this).fadeTo(550, 1.0);
    }
  );

});
$(function(){
  $('#link_to_top').click(function(){
    $(this).blur();

    $($.browser.opera ? document.compatMode == 'BackCompat' ? 'body' : 'html' :'html,body')
.animate({scrollTop: 0}, 'slow');

    return false;
  });
});
