

// Image hover fade.
$(document).ready(function(){
	$(".col img").hover(function(){
	$(this).fadeTo("slow", 0.7);
},function(){
	$(this).fadeTo("slow", 1.0);
	});
});


