$(function(){
	if(!Modernizr.input.placeholder){
		var s = $('#search');
		s.val('Search');
		s.focus(function(){
			var t = s;
			if(t.val() == 'Search')
				t.val('');
		}).blur(function(){
			var t = s;
			if(t.val() == '')
				t.val('Search');
		});
	}
	$('.top').click(function(e){
		e.preventDefault();
		$('html, body').animate({scrollTop: 0}, 250);
	});
});