/*!
 * jQuery Simplistic Hover Image Fade-in
 *
 * Copyright 2010, Curtis Renkiewicz
 *
 * Date: Sat May 16 02:06:15 2010
 */
$(document).ready(function() {
						   
  $('div.preview').hover(function() { 
    $(this).find(".hover").stop(true, true).fadeIn(500);
    
    },
  function() {
    $(this).find(".hover").stop(true, true).fadeOut(300);
  }); 
  
});
