/*
Per voi da http://www.skipstorm.org
in licenza MIT
http://www.opensource.org/licenses/mit-license.php

*/
$(document).ready(function(){

	$('#backgroundImage').css({'position':'absolute', 'top':0, 'left':0, 'z-index':-1, 'width':$(window).width(),'height':$(window).height()});
	
	$(window).resize(function(){
		$('#backgroundImage').css('width', $(window).width());
		$('#backgroundImage').css('height', $(window).height());
	});
});
