$(document).ready(function() {	//  nav tab animation  	var animatetime = 150; //time in miliseconds	$('#logo').hover(function() {		$(this).animate({ top : "0px" }, 150);            	}, function() {		$(this).animate({ top : "-5px" }, 150);	});	$('#icons a').hover(function() {		$(this).animate({ bottom : "5px" }, 150);            	}, function() {		$(this).animate({ bottom : "0px" }, 150);	});	});


function select_text()
{
	var urlbox = document.getElementById("shorturlbox");
	if(urlbox)
	{
		urlbox.focus();
		urlbox.select();
	}
	shorturloff();	
}
function menuSlideIn(){ var menuItem = $('> a > div', this); $(menuItem).slideDown('fast'); }function menuSlideOut(){ var menuItem = $('> a > div', this); $(menuItem).slideUp('fast'); }$(document).ready(function(){	$("#nav .mainMenuLi").hoverIntent(menuSlideIn,menuSlideOut);}); // close document.ready
