/*@cc_on @*/
/*@if (@_win32)
document.execCommand('BackgroundImageCache', false, true);
/*@end @*/
$(document).ready(function() {
	  $('a').click(function() {
        this.blur();
      });
});

$(document).ready(function() {
	  $("a[@rel='print']").click(function() {
			return !window.print();
	});
});	

$(document).ready(function() {
$("#search-box").focus(function() {
	if (this.value == "Enter keyword") {
		this.value = "";
	}
	});
$("#search-box").blur(function() {
	if (this.value == "") {
		this.value = "Enter keyword";
	}
	});
});
