$(document).ready(function(){
	/* ADD LINK FOR PRINT PAGE */
	var print_link = "<a href='#' id='print-link-1'>Print this page</a>";
	$("div#foreground").append(print_link); //add html var to end of div#leftmenulayer
			
	//add onclick behaviour to link based on id
	$("#print-link-1").click(function(){ window.print(); });
});