$(document).ready(
  function(){
    $("#imgmouseover img").hover(function(){
       $(this).fadeTo("fast", 0.7); 
    },function(){
       $(this).fadeTo("normal", 1.0); 
    });
  });

$(document).ready(function(){	
	$('.open').click(function() {					   
		$(this).next().slideToggle();
	}).next().hide();
});
