// JavaScript Document


$(document).ready(function(){
	Cufon.replace('h1');
	Cufon.replace('h2', {
		hover: true
	});
//JQuery ready is quicker than onload
	$(".productSpecs tr").mouseover(function() {
		$(this).addClass("over");
	}).mouseout(function() {
		$(this).removeClass("over");
	});
	$(".productSpecs tr:even").addClass("alt");
//Pop up memorial poem
	$("#box4 img").click(function(){
		window.open("/assets/media/memorial.html","windowname1","width=400,height=320");
	});
});

