Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title></title>
<script type="text/javascript" src="http://www.scottreinmuth.com/wp-content/themes/scottreinmuthcom/js/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var $els = $(".portfolio-hover");
$els.each(function(){
$(this).mouseenter(function(){ $(this).fadeIn("slow"); });
$(this).mouseleave(function(){ $(this).fadeOut("slow"); });
});
});
</script>
</head>
<body>
<img class="portfolio-hover" src="http://www.vicsjavascripts.org.uk/StdImages/Egypt5.jpg" />
<img class="portfolio-hover" src="http://www.vicsjavascripts.org.uk/StdImages/Egypt5.jpg" />
</body>
</html>