$(document).ready(function() {
   var byreleaseOrigHtml = $("#byrelease").html();
   var byratingOrigHtml = $("#byrating").html();
   var bypopularityOrigHtml = $("#bypopularity").html();
   var bynameOrigHtml = $("#byname").html();
   
   $("a.movieLink").removeAttr("title");

   $(".movie-name a").each(function() {
      $(this).qtip(
      {
         content: {
            text: 'Loading Preview...',
            url: 'previewTweets?id='+$(this).parent().parent().attr('id')
         },
         position: {
            corner: {
               target: 'bottomRight',
               tooltip: 'topLeft'
            },
            adjust: {
               screen: true
            }
         },
         style: {
            width: 500
         }
      });
   });

   
/*   
   $("#byrelease").bind("mouseenter", function() {
      var newHtml = "<p><a href=\"/\">Newest</a> ";
      newHtml += " | <a href=\"index.php?sort=release\">Oldest</a></p>";
      
      $(this).html(newHtml);

   }).bind("mouseleave", function() {
      $(this).html(byreleaseOrigHtml);
   });
*/
 
   $("#byrating").bind("mouseenter", function() {
//      var newHtml = "<p><a href=\"index.php?sort=rating&dir=desc\">Highest</a> ";
//      newHtml += " | <a href=\"index.php?sort=rating\">Lowest</a></p>";

      var $arrowCell = $(this).children("table.navtab").children("tbody").children("tr").children("td:last-child");

      var newHtml = "";
      newHtml += "<a href=\"index.php?sort=rating&dir=desc\"><img src=\"images/up48.gif\"></a>";
      newHtml += "<a href=\"index.php?sort=rating\"><img src=\"images/down48.gif\"></a>";

      $arrowCell.html(newHtml);
   }).bind("mouseleave", function() {
       $(this).children("table.navtab").children("tbody").children("tr").children("td:last-child").empty();
   });
   
   $("#bypopularity").bind("mouseenter", function() {
      var $arrowCell = $(this).children("table.navtab").children("tbody").children("tr").children("td:last-child");

      var newHtml = "";
      newHtml += "<a href=\"index.php?sort=popularity&dir=desc\"><img src=\"images/up48.gif\"></a>";
      newHtml += "<a href=\"index.php?sort=popularity\"><img src=\"images/down48.gif\"></a>";
      $arrowCell.html(newHtml);
   }).bind("mouseleave", function() {
       $(this).children("table.navtab").children("tbody").children("tr").children("td:last-child").empty();
   });
   
   $("#byname").bind("mouseenter", function() {
      var $arrowCell = $(this).children("table.navtab").children("tbody").children("tr").children("td:last-child");

      var newHtml = "";
      newHtml += "<a href=\"index.php?sort=name\"><img src=\"images/up48.gif\"></a>";
      newHtml += "<a href=\"index.php?sort=name&dir=desc\"><img src=\"images/down48.gif\"></a>";
      $arrowCell.html(newHtml);
   }).bind("mouseleave", function() {
       $(this).children("table.navtab").children("tbody").children("tr").children("td:last-child").empty();
   });
   
   $(".searchbox").focus(function() {
      $(this).val("");
   });
   
});
