$(document).ready(function() {

	$('.shuffle').randomImage({path: '/uploadedimages/'});
	$('a:first').click(function() {
		location.reload();
		return false;
	});
	if($("#Home").length > 0) {
		$(".nav").hide();
	}
	$('#searchQueryTxt').focus(function() {
	  if (this.value=='Search...') this.value='';
	});	
	$('#searchQueryTxt').blur(function() {
	  if (this.value=='') this.value='Search...';
	});
});
