$(document).ready(function(){
$("#s_medya img").fadeTo("slow", 0.5); 
$("#s_medya img").hover(function(){
$(this).fadeTo("slow", 1.0); 
},function(){
$(this).fadeTo("slow", 0.5); 
});
});
