$(document).ready(function(){
   $('.headphotoinfo').hide();
   $('.cameratoggle').hover(
     function(){
       $(this).parent().find('.headphotoinfo').show()
     },
     function(){
       $(this).parent().find('.headphotoinfo').hide()
     }
   )
   $('.weather_right').hide();
   $('.weather_left').hover(
     function(){
       $(this).parent().find('.weather_right').show()
     },
     function(){
       $(this).parent().find('.weather_right').hide()
     }
   )
})