$(document).ready(function() {
	
	// border color animation on release and video thumbnails
	$('.home #content ul li a img, #thumbs li img').hover(
      function () {
        $(this).css({borderColor: '#9595a3'}).animate({borderColor: '#230009'}, 300);
      }, 
      function () {
        $(this).animate({borderColor: '#9595a3'}, 300);
      }
    );
});