$(document).ready(function(){
	
	//Fade in the Taglines in the header
	$("ul#tags").css({'display' : 'none'});
	$("ul#tags").fadeIn(1300);

	//Font Resizing with a cookie to remember.
	$(".more").click(function(event){
		event.preventDefault();
		$("#content").css("font-size","10px");
		$.cookie("fontSize","10px");
	});

	$(".moremore").click(function(event){
		event.preventDefault();
		$("#content").css("font-size","12px");
		$.cookie("fontSize","12px");
	});

	$(".moremoremore").click(function(event){
		event.preventDefault();
		$("#content").css("font-size","14px");
		$.cookie("fontSize","14px");
	});
 
	// Cookie
	var fontSize = $.cookie("fontSize");

	// Calling Cookie
	if(fontSize == "10px"){
		$("#content").css("font-size","10px");
	};
	
	if(fontSize == "12px"){
		$("#content").css("font-size","12px");
	};
	
	if(fontSize == "14px"){
		$("#content").css("font-size","14px");
	};
});
