$(document).ready(function() 
{
	// archieve handler
	try
	{
		var obj = null;
		$("#box_archives li").each(function() { obj = $(this); });
		obj.css({borderBottom:'none'});
	}
	catch(e){}
	
	// news handler
	try
	{
		var obj = null;
		$("#boxnews hr").each(function() { obj = $(this); });
		obj.hide();
	}
	catch(e){}
});

