﻿$(document).ready(function(){
$(".sw img").fadeTo("slow", 0.5);

$(".sw img").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.5); 
});
});