$(document).ready(function(){
$("#comfort-options img").fadeTo("slow", 0.6);

$("#comfort-options img").hover(function(){
$(this).fadeTo("slow", 1.0); 
},function(){
$(this).fadeTo("slow", 0.6);
});
});
