jQuery(document).ready(function($) {
	
	// search box
	var $searchbox = $('#search input');
	$searchbox.focus(function() {
		if ($(this).val() === $(this)[0].defaultValue) { $(this).val(''); }
	}).blur(function() {
		if ($(this).val() === '') { $(this).val($(this)[0].defaultValue); }
	}).click(function() { 
		$(this).trigger('focus'); 
	});

	// ads, flickr & twitter open in a new window
	$('#flickr a, #latesttweet a, .ads a').click(function() { window.open(this.href); return false; });
	
});