function initPage(){
	if(typeof($) == 'function'){
		$('.post a.more').click(function(){
			var _more = $(this).next('.more-text');
			if(_more.length){
				$(this).fadeOut(200, function(){
					_more.slideDown(300);
				});
				return false;
			}
		});
		jQuery('#imglnk210').click();
	}
}
if (window.addEventListener)
	window.addEventListener("load", initPage, false);
else if (window.attachEvent)
	window.attachEvent("onload", initPage);

