$(function()
{
	var $el = $('#all'),
		img = new Image();
	
	$(img)
		.load(
			function()
			{
				$(this).hide();
				$el.append(this);
				$(this).fadeIn(
					function()
					{
						init();
					}
				);
			}
		)
		.attr('src', '/wp-content/themes/parco/style/img/intro/intro_bg.jpg');

});

/**
 * init for splash page
 */
var init = function()
{
	$( '#logo' ).animate(
		{ top: 0 }, 
		{
			duration : 600,
			queue	 : false,
			easing	 : 'easeOutElastic'
		});

	$( '#cartello' ).animate(
		{ top: '200px' }, 
		{
			duration : 600,
			queue	 : false,
			easing	 : 'easeOutElastic'
		});
	
	$( '#cartello' ).hover(function()
	{
		$( this ).stop().animate(
			{ top: '220px' },
			{
				duration : 300,
				easing	 : 'easeOutElastic'
			});
	},function()
	{
		$( this ).stop().animate(
			{ top: '200px' },
			{
				duration : 100,
				easing	 : 'easeInBack'
			});
	});
	
};
