// gallery rollovers
$(document).ready(function(){
	$(".gallery img").fadeTo('fast', 0.5);
	$(".gallery img").hover(
	  function () {
		$(this).fadeTo('fast', 1);
	  },
	  function () {
		$(this).fadeTo('fast', 0.5);
	  }
	);
});
