$(document).ready(function(){
    $("#index").hoverIntent(fadeIn,fadeOut);
    $(".playercontrol").hover(fadeIn,fadeOut);
    $(".poem").hover(fadeIn,fadeOut);
    $(".dragtext").hover(fadeInThat,fadeOutThat);
    $(".weboverlay").hover(fadeIn,fadeOut);
});

function fadeIn() {
	$(this).fadeTo(350, 1);
};

function fadeOut() {
	$(this).fadeTo(300, 0);
};

function fadeInThat() {
	$('.dragtext .hide').fadeTo(350, 1);
};

function fadeOutThat() {
	$('.dragtext .hide').fadeTo(300, 0);
};