// JavaScript Document
$(function(){
	var scroller;
	if ($(this).scrollTop() < 150) { 
		
			scroller = setTimeout(function(){ 
			
						$('body,html').animate({  
							scrollTop: 200  
						},  
						800)
					
						}, 10000);
			
		
	}
	
	$(window).scroll(function () {  

		if ($(this).scrollTop() != 0) {  
			$('#top').fadeIn();  
		} else {  
			$('#top').fadeOut();  
		} 
		if($(this).scrollTop() > 200){
			
			clearTimeout(scroller);
			$("#rays").removeClass("raysanimation");
       		$("#glow").removeClass("glowanimation");
			
		}
		else{
			
			if($("p",this).text() !="pause"){
				$("#rays").addClass("raysanimation");
    	   		$("#glow").addClass("glowanimation");
			}
		}
	});  
	$('#top').click(function () {  
		
		$('body,html').animate({  
			scrollTop: 0  
		},  
		800);  
	});
});
