//Load rssfeed into the news <td> cell
function loadnews()
	{
	if ($("#news").length > 0)
		{
	 	var date = new Date();
		var timestamp = date.getTime();
		$("td#news").load("index.php?loader=2") ;
		}
	}
$(document).ready(function(){					
	loadnews();
})

//Slides the login box visible when link clicked
$(document).ready(function(){
	$(".loginlnk").click(function()
		{
		$("#login").slideToggle(300);
		})
	})

//Load sitemap
$(document).ready(function(){
	$(".sitemap").click(function()
		{
		/* reload the index file with a variable to call sitemap functions etc */
		$("#w_page").load("index.php?loader=1");
		})
	})