Cufon.replace('.chunkfive', { fontFamily: 'ChunkFive-Roman', hover: true });
Cufon.replace('.rockwell', { fontFamily: 'Rockwell', hover: true });

$(document).ready(function() {
	$("#tweetercontainer").getTwitter({
					userName: "theloaf_net",
					numTweets: 2,
					loaderText: "{Loading tweets}",
					slideIn: true,
					slideDuration: 750,
					showHeading: true,
					headingText: "",
					showProfileLink: false,
					showTimestamp: true
	});
	

	$('.hassubmenu').hoverIntent(function(){
		$(this).find('ul').fadeIn();
	}, function(){
		$(this).find('ul').fadeOut();
	})
	
	$("#contacttop a").hoverIntent(function(){
		$(this).children().fadeTo(400,0.5);
	},function(){
		$(this).children().fadeTo('slow',1);
	});
	
})
