// JavaScript Document

$(function(){
	//Remove Border from top of footer post
	$('#footerCont:first').css({"border-top":"#d4d4d4 thin solid"});
	$('.last').css({"margin-right":"0px"});
	
	
	
	$('#qSubmit').click(function(){
		
		$('#quizSlider').hide();
		$('#quizNavContainer').hide();
		$('#qSubmit').hide(function(){
			$('.preloader').show(tally);
		});
		
		return false;
	});
	
	$('#nav li').hover(function(){
		$('ul', this).stop(true,true).slideDown('normal');
	},function(){
		$('ul', this).stop(true,true).slideUp('normal');
	});
	
	function answer(){
		$('#transCont #answer:eq(0)').fadeIn('normal',function(){
			$('#transCont #answer:eq(1)').fadeIn('normal',function(){
				$('#transCont #answer:eq(2)').fadeIn('normal',function(){
					$('#transCont #answer:eq(3)').fadeIn('normal',function(){
						$('#transCont #answer:eq(4)').fadeIn('normal',function(){
							$('#transCont #answer:eq(5)').fadeIn('normal',function(){
								$('#transCont #answer:eq(6)').fadeIn('normal',function(){
									
								});
							});
						});
					});
				});
			});
		});
	}	
	
});
