$(document).ready(function() {
	$(this).delay(500,function(){
		$("#BodyWrapper").fadeIn('fast');
	});
});

function highlight(e, v)
{
if (v==1)
{
	e.style.borderColor='#202020';
}
else
{
	e.style.fontWeight='bold'
	e.style.borderColor='#D3D4D8';
}
	
}