var animationTime = 250;
var animationDelay = 100;

$(document).ready(initLogo);

function initLogo()
{
	$('#softhis-logo img').css('left', '63px');
	$('#softhis-logo p').hide();
	
	$('#header').hover(mouseOverHandler, mouseOutHandler);
}

function mouseOverHandler()
{
	$('#softhis-logo img').stop(true).animate({ left: 0, rotate: '-360deg' }, animationTime);
	if($.support.opacity) $('#softhis-logo p').stop(true, true).delay(animationDelay).fadeIn(animationTime - animationDelay);
	else $('#softhis-logo p').delay(animationTime).show();
}

function mouseOutHandler()
{
	$('#softhis-logo img').stop(true).animate({ left: 63, rotate: '0deg' }, animationTime);	
	if($.support.opacity) $('#softhis-logo p').stop(true, true).delay(animationDelay).fadeOut(animationTime - animationDelay);
	else $('#softhis-logo p').hide();
}
