$(document).ready(function() {

  $("img.up").click(function() {
       $(this).attr("src", "images/thumbup.png");           // set up image green
       
       var idvalue = $(this).attr("idvalue");
       var ghtype = $(this).attr("ghtype");
       
       $(this).next().attr("src", "images/thumbdgray.png");  // set down image gray
       
       $.get('thumbvote.php', {"thumb":"up","id":idvalue,"type":ghtype},
       function(data) {
           $('.result' + idvalue).html(data);

       });

  });
  $("img.down").click(function() {
         $(this).attr("src", "images/thumbdown.png");           // set down image red
         
         var idvalue = $(this).attr("idvalue");
         var ghtype = $(this).attr("ghtype");
         
         $(this).prev().attr("src", "images/thumbugray.png");      // set up image gray
         
         $.get('thumbvote.php', {"thumb":"down","id":idvalue,"type":ghtype},
           function(data) {
           $('.result' + idvalue).html(data);

       });

  });
  
  
  $(".vidclick").click(function() {
      var code = $(this).attr("xvalue");
      $("#video_box").html("<object width=\"500\" height=\"315\"><param name=\"movie\"  value=\"http://www.youtube.com/v/" + code + "&hl=en&fs=1&rel=0&color1=0x5d1719&color2=0xcd311b&border=1\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/" + code + "&hl=en&fs=1&rel=0&color1=0x5d1719&color2=0xcd311b&border=1\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"500\" height=\"315\"></embed></object>");
      return false;

  });
  
  
  
  

});

