
	function showLoginForm() {
		$('.loginForm').fadeIn();
	}
	
	function showRegisterForm() {
		$('.registerForm').fadeIn();
	}

	
	function animateWidget(){
		$('#contestsWidget').css({
			"top": "0"
		}).fadeIn(
			600
		).css({
			"top": "0"
		}).animate({
			"top": "270"
		}, 300).animate({
			"top": "230"
		}, 200).animate({
			"top": "260"
		}, 200).animate({
			"top": "240"
		}, 200).animate({
			"top": "250"
		}, 250);
	}
