

function recordOutboundLink(link, category, action, account) {
	    try {
	        var pageTracker = _gat._getTracker(account);
	        pageTracker._trackEvent(category, action);
	        //setTimeout('document.location = "' + link.href + '"', 100)
	    } catch (err) { }
	}

$(document).ready(function() {
	if($(window).width() <= 747) {
	$('#mytools').hide();
	$('#options').click(function() {
	  $('#mytools').slideToggle('slow', function() {
	  });
	  return false;
	});
	}
	else {
	  $('#options').hide();	
	}
});
