$(document).ready(function () {

	    if (!DetectHandHeld()) {
	        $('div.panellinkbox').hide();

	        $('div#orgpanel').hover(
			function () { $(this).children('div.panellinkbox').show(); },
			function () { $(this).children('div.panellinkbox').hide(); }
		);

	        $('div#profpanel').hover(
			function () { $(this).children('div.panellinkbox').show(); },
			function () { $(this).children('div.panellinkbox').hide(); }
		);

	        $('div#pubpanel').hover(
			function () { $(this).children('div.panellinkbox').show(); },
			function () { $(this).children('div.panellinkbox').hide(); }
		);
	    }
});
