$(document).ready(function(){
						   
$(function() {$('#testimonials').cycle({ timeout: 8000, cleartype: 1, speed: 600, cleartypeNoBg: true});});				   
	var aboutLink = $("#aboutLink");var asManLink = $("#asManLink");var writingLink = $("#writingLink");var websiteLink = $("#websiteLink");var contactLink = $("#contactLink");var blogLink = $("#blogLink");
	var aboutBox = $("#aboutBox");var asManBox = $("#asManBox");var writingBox = $("#writingBox");var websiteBox = $("#websiteBox");var contactBox = $("#contactBox");var blogBox = $("#blogBox");
	aboutBox.fadeOut(0);asManBox.fadeOut(0);writingBox.fadeOut(0);websiteBox.fadeOut(0);contactBox.fadeOut(0);blogBox.fadeOut(0);
	
$(aboutLink).hover(function () {$(aboutBox).stop(true, true).fadeIn(400);}, function () {$(aboutBox).stop(true, true).fadeOut(200);});
$(asManLink).hover(function () {$(asManBox).stop(true, true).fadeIn(400);}, function () {$(asManBox).stop(true, true).fadeOut(200);});
$(writingLink).hover(function () {$(writingBox).stop(true, true).fadeIn(400);}, function () {$(writingBox).stop(true, true).fadeOut(200);});
$(websiteLink).hover(function () {$(websiteBox).stop(false, true).fadeIn(400);}, function () {$(websiteBox).stop(true, true).fadeOut(200);});
$(contactLink).hover(function () {$(contactBox).stop(true, true).fadeIn(400);}, function () {$(contactBox).stop(true, true).fadeOut(200);});
$(blogLink).hover(function () {$(blogBox).stop(true, true).fadeIn(400);}, function () {$(blogBox).stop(true, true).fadeOut(200);});
//Portfolio Hover Code
$(".list1 li").hover(function(){$(this).find("img").fadeOut("fast");$(this).find(".txt").fadeIn("fast");},function(){$(this).find("img").fadeIn("fast");$(this).find(".txt").fadeOut("fast");});
//End
});
