$(document).ready(function() {
  if (location.hash.substr(0,8)=='#comment') {
    $('#'+location.hash.substr(1)).attr('class','chl');
  }
  $('#search').focus(function() {
    if ($(this).val()=='Search') $(this).val('');
  });
  $('#search').blur(function() {
    if ($(this).val()=='') $(this).val('Search');
  });
  $('.file').customFileInput();
  $('a[rel=gallery]').colorbox();
  $('.el').dotdotdot({ellipsis:' ...'});  
});

function user_imagedelete() {
  $.ajax({
    type: 'POST',
    url: '/ajax/',
    data: 'todo=user_imagedelete',
    success: function (r) {
      if (r) {
        $('#imagepreview').hide();
        $('#imagedelete').hide();
      }
    }
  });
}

function right_showhide(s,h,o) {
  s.show();
  h.hide();
  $('.selectedright').removeClass('selectedright');
  o.addClass('selectedright');
  
  return false;
}
