$(function(){
	if($('a.moreinfo').length>0){
		$('a.moreinfo').each(function(){
			var _Self =$(this);
			var _Div = _Self.next('div.moreinfo:first').hide();
			if(_Div.length > 0) {
				_Self.click(function(){
					_Div.slideToggle();
					return false;
				});
			}
		});
	}
	if($('a.allblock').length>0){
		$('a.allblock').each(function(){
			var _Self =$(this);
			var _TD = _Self.parents('td');
			if(_TD.length > 0){
				_TD.click(function(e){
					window.location = _Self.attr('href');
				}).css({'cursor':'pointer'});
			}
		});
	}
	
});
