
	var window_width;
	var window_height;
	var LineCount = 0;
	var mySeconds = 0;
	var adder = [10, 2, 2];
	var total = 1;

	
	function PageInit()
	{
		//get the height and width of the page
		window_width = $(window).width();
		window_height = $(window).height();

//		$('#header').append("<b>This is the where the header and Menu will go</b><BR>");
//		$('#header').append("<b>This is the next line of data</b>");

//		$('#content-left').html('<span id="myfb-name"></span><BR>');
//		$('#content-left').append('<span id="left-col-update"></span><BR>');

		$('.dropdown').hover(
		
			function () 
			{
				$('#l1', this).addClass('hover');
				$('#l1', this).find('#c1').show();
			},
		
			function () 
			{
				$('#l1', this).removeClass('hover');
				$('#l1', this).find('#c1').hide();
			}
		
		);	


	}
    
	function OutputAjax(data)
	{
		var myOutput = data.split('|');
		
		//var myName = '<?php echo $fbname; ?>';
		//$('#myfb-name').html("Hello: "+myName);
	
	}
	
    //THE FUNCTIONS
    function PrintTimer(countDown)
	{
		return;
	}

	
	
