$(document).ready( function() {
	$("a.expand").click( function() {
		var theHash = $(this).attr("href");
		var divState = $("div"+theHash);
		if (divState.is(":visible")) {
			divState.slideUp("slow");
			$(this).addClass("icoPlus");
			$(this).removeClass("icoMinus");
		} else {
			divState.slideDown("slow");
			$(this).addClass("icoMinus");
			$(this).removeClass("icoPlus");
		}
		return false;
	});
	$.sifr({
		path: 'images/',
		save: true
	});
	$('h1').sifr({ font: 'Tahoma' });
	$('h2').sifr({ font: 'Tahoma' });
	$('h3').sifr({ font: 'Tahoma' });
	$('h3#noFlash').sifr(false);
});

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

try {
	var pageTracker = _gat._getTracker("UA-xxxxxx-x");
	pageTracker._trackPageview();
} catch(err) {

}
