$(document).ready(function(){
	
	$("#fadeIt").children("div").hover(
		function(){
			$(this).animate({
				fontSize: "16px"
			},300)
		},
		function(){
			$(this).animate({
				fontSize: "12px"
			},300)
		}
	);
	
});

$(window).load(function(){
	var t = setTimeout( function(){$("#fadeIt").fadeIn(1500);}, 500);
});