jQuery(function($) {
	$('.search input.query').focus(function(e) {
		if ($(this).attr('defaultValue') == $(this).val()) {
			$(this).val('');
		}
	});
	
	$('a[class*=popup]').facebox() 
});