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

	});

