$(document).ready(function() {
	
	$('a#feedback').fancybox();
	
	$('#searchvalue').focus(function() {
		if(this.value == this.title) {
			this.value = '';
		}
	});
});
