$(document).ready(function() {

	$(".info").toggle(function(){
							   $(this).parent().parent().find(".excerpt").fadeOut().slideDown(500)},
												function(){$(this).parent().parent().find(".excerpt").fadeIn().slideUp(500)}		 
														 )
	
	$("#thumbs img").hover(function(){
														  $(this).fadeTo(500,0.05)
														  },
														  function(){
															   $(this).fadeTo(500,1.0)
															  }
															  )
	
	$("#container .entry-content p a img").hover(function(){
														  $(this).fadeTo(500,0.1)
														  },
														  function(){
															   $(this).fadeTo(500,0.5)
															  }
															  )	
		
});
