<?php 
	
	$seconds_to_cache = 31536000;
	$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";

	header("content-type: application/javascript; charset: UTF-8");
	header("Expires: $ts");
	header("Cache-Control: public, max-age=$seconds_to_cache, pre-check=$seconds_to_cache");
	header("X-UA-Compatible: IE=edge,chrome=1");
	header("Pragma: cache");

	include("/home/www/wwwbuzzerstar/js/jquery-buzzerstar.js");
	include("/home/www/wwwbuzzerstar/js/modernizr.js");
	//include("/home/www/wwwbuzzerstar/js/ajax_functions_post.js"); // wirft error
	include("/home/www/wwwbuzzerstar/js/jquery.simplyCountable.js");
	include("/home/www/wwwbuzzerstar/js/ajax_functions_compressed_v2.js");
	//include("/home/www/wwwbuzzerstar/js/analytics.js");

	exit(0);
?>