$(document).ready(function(){
		
	$('#top_link').click(function () { 
	  window.scrollTo(0,0);
	  return false;
	});
	
	$('#nav li').hover(function(){
	  $(this).find('div').show();
	  $(this).find('.nav_img').addClass('over');
	},function(){
	  $(this).find('div').hide();
	  $(this).find('.nav_img').removeClass('over');
	});
	
	if ($.browser.safari) {
		$('textarea').css('resize', 'none');
		$('input.text').css('resize', 'none');
	}

});


