// JavaScript Document
//$('head').append('<style type="text/css">div#box01 {display:none} </style>') // hides element that will 'flash' in ie before it can be hidden (ie before the doc is fully 'ready') ... this way contents still visible to those w/ js disabled


$(document).ready(function() {

	$('div#box01').fadeIn('fast');
	  
	$('a#triggerClose').click(function() {
	$('div#box01').fadeOut('fast');
	});

});
