var $hoverOptions={sensitivity:3,interval:0,over:menuShow,timeout:1000,out:menuHide};var $dockOptions={sensitivity:3,interval:0,over:dockShow,timeout:600,out:dockHide};var $tooltips={delay:0,extraClass:"jtt",showURL:false,id:"itooltip",showBody:" - "};$(document).ready(function(){$("#menu").corner("round tr br").hoverIntent($hoverOptions);$("#dock").corner("round tl tr").hoverIntent($dockOptions);$("#dockList img").hover(dockImgHover,dockImgOut);});function menuShow(){$(this).animate({"left":0},400);}
function menuHide(){$(this).animate({"left":"-220px"},400);}
function dockShow(){$(this).animate({"height":"116px"},400);}
function dockHide(){$(this).animate({"height":"23px"},400);}
function dockImgHover(){$(this).attr("src",$(this).attr("src").replace(".gif","Over.gif"));}
function dockImgOut(){$(this).attr("src",$(this).attr("src").replace("Over",""));}