$(document).ready (function () {				
	$(".menu li").hover(
		function() {
			$(this).addClass("sfhover");
		},
		function() {
			$(this).removeClass("sfhover");
		}
	);
	
	$('h1').corner("3px");
	$('.gallery .image img').corner("3px");
	$('.corners').corner("3px");
	
	$('#top-search input').focus(function() { $(this).val(""); });
});
