
$(document).ready(function(){
//  Search box
	$("#q")
		.attr( "value", $("#q").attr("title"))
		.focus(function() {
			if (this.value == $('#q').attr("title")) {
				this.value = "";
			}
		})
		.blur(function() {
			if (this.value == "") {
				this.value = $("#q").attr("title");
			}
		});
		
// Print
	$("#print").html("<a href='#' title='Udskriv (CTRL + P)'><span>Udskriv</span></a>").click(function() {window.print();return false;});
});