$(document).ready(function () {
	sIFR.replaceElement("div.title p", named({
		sFlashSrc: 	"/flash/helveticaneue.swf", 
		sWmode: 	"transparent", 
		sColor:		"#777777"
	}));
	
	
	$('#print_button').click(function(){
		window.print();
	});
	
	//DD_belatedPNG.fix('#homepage_bg');
	
	// Fix the corners of menu items on hover
	$('#left_menu ul li').bind('mouseover', function(){
		$(this).children('img.top').attr('src', '/images/menu-level-1-corner-top-open.png');
		$(this).children('img.bottom').attr('src', '/images/menu-level-1-corner-bottom-open.png');
	});
	
	$('#left_menu ul li:not(.top_selected)').bind('mouseout', function(){
		$(this).children('img.top').attr('src', '/images/menu-level-1-corner-top.png');
		$(this).children('img.bottom').attr('src', '/images/menu-level-1-corner-bottom.png');
	});
	
	$('li.top_selected').children('img.top').attr('src', '/images/menu-level-1-corner-top-open.png');
	$('li.top_selected').children('img.bottom').attr('src', '/images/menu-level-1-corner-bottom-open.png');
});
