$(window).load(function() {
	$('#header input[name="q"]').focus(function(){
		if ('search the site' == $(this).val()) {
			$(this).val('');
		}

	});
	$('#header input[name="q"]').blur(function(){
		if ('' == $(this).val()) {
			$(this).val('search the site');
		}

	});

	var newWin;
	$('.off_site').click(function(e){

		e.preventDefault();

		newWin = window.open($(this).attr('href'), 'newWin', 'width=850,height=640,location=1,scrollbars=1,resizable=1,menubar=1,toolbar=1');

		newWin.focus();
	});
});
