$(function() {

	//Print current page
	$("#print").click(function() { 
		window.print();
		return false; 
	});	

	//Text resizing
	$("a.size1").click( function() { 
		$("body").removeClass().addClass("size1");
		$.cookie('textSize', '1', { path: '/' }); 
		return false; 
	});
	
	$("a.size2").click( function() { 
		$("body").removeClass().addClass("size2"); 
		$.cookie('textSize', '2', { path: '/' }); 
		return false; 
	}); 

	setInterval("swapCounters()",2000);
	
	//Make all of box clickable
	$("div.contactBox").click( function() { location.href=$(this).find("a").attr("href");} );	 
	$("div.contactUs").click( function() { location.href=$(this).find("a").attr("href");} );	 

});

Cufon.replace('h1', { fontFamily: 'Frutiger' });

var stat = 1;

function swapCounters() {
	
	$(".stat" + stat).fadeOut("slow");
	if (stat < 3)
		stat++;
	else
		stat = 1;
	$(".stat" + stat).fadeIn("slow");
}

