
// initialise plugins

$(document).ready(function(){
	$('#bg').height($(document).height());
	$('#bg').width($(document).width());
	$(window).resize(function(){
	$('#bg').height($(document).height());
	$('#bg').width($(window).width());
	});
	$(window).load(function(){
	$('#bg').height($(document).height());
	$('#bg').width($(window).width());
	});
		
});

