$(document).ready(function () {
	$("span").fadeTo(1400,0.1);
	$("h1,h2").hover(
		function () {
			$(this).find("span").stop();
			$(this).find("span").fadeTo(500, 1);
		}
		,
		function () {
			$(this).find("span").stop();
			$(this).find("span").fadeTo(500, 0.1);	
		}
	);
});
