$(function() {
	// in the search form, treat the enter key like a mouse click
	$("#nav-search input").keypress(function(e){
		if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) {
			$('input#btnSearch').click();
			return false;
		} else {
			return true;
		}
	});
	// submit search requests to fusionbot
	$("input#btnSearch").click(function(e){
		window.location = 'http://ss614.fusionbot.com/b/q?sn=155172918&k=' + $('#txtSearch').val();
		return false;
	});
	// open external links in a new window
	$("a[href^=http://]").attr("target","_blank");
	$("a[href^=http://blogs.popart.com/]").removeAttr("target");
	$("a[href^=http://www.popart.com/]").removeAttr("target");
});