	$('.topmenu ul li a').css('font-size', '18px');
	$('.header .blue .text').css('font-size', '22px');

	$('.topmenu ul li a span.middle').each(function(){
		var txt = $(this).find('span.txt').html();
		var html = '<span class="txt2">'+txt+'</span>';
		html += '<div class="no_shadow">';
		for (i = 1; i < 9; i++) {
			html += '<span class="shadow" id="s'+i+'">'+txt+'</span>';
		}
		html = html + '</div>';
		$(this).append(html);
	});

	$('.topmenu ul li a').hover(function(){
		$(this).find('span.txt2').css('display', 'block');
		$(this).find('span.txt').css('display', 'none');
		$(this).find('.no_shadow').css('display', 'block');
	}, function(){
		$(this).find('.no_shadow').css('display', 'none');
		$(this).find('span.txt').css('display', 'block');
		$(this).find('span.txt2').css('display', 'none');
	});

/* ------------------------------ Cufon instructions starts here -----------*/

	Cufon.set("fontFamily", "myraidcond");
	Cufon("span.txt", {
			color: "-linear-gradient(#ffffff, #c2c2c2)",
			textShadow: "2px 2px #000",
			fontSize: "18px"

	});

	Cufon("span.txt2", {
			color: "-linear-gradient(#ffffff, #c2c2c2)",
			fontSize: "18px"
	});

	Cufon.replace("span.shadow"); 

	Cufon.replace(".header .blue .text",{
			textShadow: "1px 1px #000"
	}); 

	Cufon.set("fontFamily", "myraidbold");
	Cufon.replace(".header .blue .text span",{
			textShadow: "1px 1px #000"
	}); 
	Cufon.set("fontFamily", "avantebook");
	Cufon.replace(".submenu ul li a", {
			color: "-linear-gradient(#ffffff, #c2c2c2)",
			textShadow: "2px 2px #000"
		}); 
	Cufon.replace("h2.instruction", {
			color: "-linear-gradient(#c2c2c2, #ffffff)",
			textShadow: "0px 2px #000"
		}); 
	
	Cufon.now();
