// JavaScript Document

$(document).ready(function(){ 
	/* fix PNGs in IE, and swap out a few images to make up for missing background */
	if ($.browser.msie == true && $.browser.version < 7){
		$(".plantpic").attr("src","images/plantbig2.png");
		$("#header, #rightCol").pngFix();
	}
	
	
	/* run SIFR on headings */
	$("#lightmiddle h1, #lightmiddle h2, #lightmiddle h3").sifr({
		path: '/fonts/',
		font: 'rockwell',
		verticalAlign:'top',
		wmode: 'transparent'
	});
	
});
