$(function(){
	//toggle animation;
	$("#animControl").click(function(e) {
       	$("#rays").toggleClass("raysanimation");
       	$("#glow").toggleClass("glowanimation");
		if($("p",this).text()=="pause"){
			$("p",this).text("play");
		}
		else{
			$("p",this).text("pause");
		}
    });
	
});
