// Make Entire Block Element Clickable
$(document).ready(function(){
	$('.item').click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

});

// Get year
$(document).ready(function(){
	$("#year").text( (new Date).getFullYear() );
});

// Clear search box
$(document).ready(function(){
	$("#searchbox input").focus(function() {
				 if ( $(this).val() == "Search")
					$(this).val('');
				}); 
});



