function snow()
{
	
	Falling(5,"<img src=\"/<?php echo(CURRENT_SKIN); ?>/fiocco.gif\" width=\"25\" height=\"25\">", 60);
	Falling(30,"<FONT SIZE='3' FACE='Verdana' COLOR='#FFFFFF'>*</FONT>", 60);	 
	/*
	Falling(5,"<img src=\"/images_befana/fiocco.png\" width=\"70\" height=\"87\">", 60);
	Falling(30,"<img src=\"/images_befana/fiocco.gif\" width=\"35\" height=\"36\">", 60);
	*/  
}

function refreshBackgroundImage(options)
{
	switch (options.type)
	{
		case "fixed":
		{
			$('#divBackgroundImage_id').css('top', ($(window).height() - $('#divBackgroundImage_id').height()) + 'px');
			$('#divBackgroundImage_id').css('position','fixed');
			break;
		}
		
		case "bottom":
		{
			$('#divBackgroundImage_id').css('top', ($(document).height() - $('#divBackgroundImage_id').height()) + 'px');
			break;
		}
	}
	
	switch (options.show)
	{
		case "fade":
		{
			$('#divBackgroundImage_id').fadeIn(250);
			break;
		}
		
		default:
		{
			$('#divBackgroundImage_id').css('display','block');
			break;
		}
	}
}
$(document).ready(function() {
	
	refreshBackgroundImage({type: "bottom", show: "fade"});
	
	$(window).bind('resize', function() {
		refreshBackgroundImage({type: "bottom", show: "fade"});
	});
	
});