$(document).ready(function() {
	$('#sidebar h3').toggle(function() {
		$(this).parent().find('.ul').animate({height: 'hide', opacity: 'hide'}, 'speed');
		$(this).addClass('close');
	}, function() {
		$(this).parent().find('.ul').animate({height: 'show', opacity: 'show'}, 'speed');
		$(this).removeClass('close');
	});
	
    $('#footlogo a').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow'); 
		return false;
    }); 
	$('#sidebar .ads h3').trigger('click');
	$('#sidebar .ads h3').trigger('click');
	
	$('#sidebar .loginform h3').trigger('click');
});