$(document).ready(function(){
$(".latest_img").fadeTo("slow",0.3)
$(".latest_img").hover(function(){
$(this).fadeTo("slow",1.0)
},function(){
$(this).fadeTo("slow",0.3)
})
})
$(document).ready(function(){
$(".text_p").fadeTo("slow",0.3)
$(".text_p").hover(function(){
$(this).fadeTo("slow",1.0)
},function(){
$(this).fadeTo("slow",0.3)
})
})
$(document).ready(function(){
$(".div").fadeTo("slow",0.5)
$(".div").hover(function(){
$(this).fadeTo("slow",1.0)
},function(){
$(this).fadeTo("slow",0.4)
})
})

