$(function(){
	$('#header .search-form input[type="text"]').bind('focus', function(){
		if ($(this).val() == 'Search our site') $(this).val('');
	});
	$('#header .search-form input[type="text"]').bind('blur', function(){
		if ($(this).val() == '') $(this).val('Search our site');
	});

	/*
	$('dl.search-results a[href*="photos/"]').prettyPhoto({
		animationSpeed: 'normal',
		padding: 40,
		opacity: 0.75,
		show_title: true,
		allowresize: true,
		counter_separator_label: '/',
		theme: 'light_rounded',
		social_tools: '',
		gallery_markup: ''
	});
	*/
});
