<!--
//<![CDATA[

fetch_unix_timestamp = function()
{
	return parseInt(new Date().getTime().toString().substring(0, 10))
}

$(document).ready(function() {

	//Zebra striping
	$("tr:nth-child(odd)").addClass("odd");	
	
	//Show/Hide Sitemap
	$("#sitemapFunction").click(function() {
		if($("#index").is(":hidden")) {
			$("#index").slideDown("slow", function() {
				$("#sitemapFunction").html('<img src="/gfx/close.gif" alt="Close" />');
			});	
		}
		else{
			$("#index").slideUp("slow", function() {
				$("#sitemapFunction").html('<img src="/gfx/open.gif" alt="Open" />');
			});				
		}
	});
	
	//Show/Hide SEO Content
	$("#mypaneltab").click(function() {
		if($("#mypanelcontent").is(":hidden")) {
			$("#mypanelcontent").slideDown("slow", function() {
				$("#mypaneltab").html('<img src="/gfx/collapse.gif" alt="Collapse" />');
			});	
		}
		else{
			$("#mypanelcontent").slideUp("slow", function() {
				$("#mypaneltab").html('<img src="/gfx/expand.gif" alt="Expand" />');
			});				
		}
	});

});


//]]>