// JavaScript Document
$(document).ready(ItemInit);

// item hovers
function ItemInit(){
  $(".item img").each( function(){
    $(this).hover(function(){JT_show(this.alt,this.id,this.title)},function(){$('#JT').remove()});
  });
}
//load the comments modals
$('a.comments').nyroModal({autoSizable: true, minWidth: 465});