/*

	// -------------------------------------------------------------------- //
	// script.js

*/

	$(document).ready(function(){

/*		$('#top').prepend('<p><span class="width"><b>W</b> '+$(document).width()+'</span>\
							  <span class="height"><b>H</b> '+$(document).height()+'</span>\
							  <span class="scroll"><b>S</b> '+$(document).scrollTop()+'</span></p>');

		$(window).scroll(function() { $('#top p:first .scroll').html('<b>S</b> '+$(document).scrollTop()); });
		$(window).resize(function() { $('#top p:first .width').html('<b>W</b> '+$(document).width());
									  $('#top p:first .height').html('<b>H</b> '+$(document).height()); });
*/
	}); // end .ready

