jQuery(document).ready(function($) {
	
	
	$(".thumbnail-frame").mouseover(function(event) {
	
	
	$(event.target).prev().fadeIn();
	$(event.target).prev().mouseout(function() {
		$(this).fadeOut();
	
   	});
  });
  
  

	
});
