function Ajax() {
	/* Enter the Cufon */
	Cufon.replace(".title h4", {textShadow: '#fff 0px 1px'});
	Cufon.replace(".header h2, .header li", {textShadow: '#000 0px 1px'});
	$(".header a").click(function() {
		$(".header a").removeClass("active");
		$(this).addClass("active");
	});
	/* PNG Fix */
	$(document).pngFix();
}

$(document).ready(function() {
	
	/* Enter the Cufon */
	Cufon.replace(".title h4", {textShadow: '#fff 0px 1px'});
	Cufon.replace(".header h2, .header li", {textShadow: '#000 0px 1px'});
	$("#right ol li").hover(function() {
		$(this).stop(true, true);
		$(this).fadeTo("fast", 0.7);
	},
	function(){
		$(this).fadeTo("fast", 1.0);
	});
	
});
