// JavaScript Document $(document).ready(function() { // enable tooltip for "download" element. use the "slide" effect $("#loginLink").tooltip({ position: "bottom centre", offset: [-10, -370], effect: "fade", opacity: 0.8, tip: '#loginToolTip' }); $("#headerLoginForm").bind("keypress", function(e) { if (e.keyCode == 13){ $("#headerLoginForm").submit(); return false; } }); //Make the content fade in ! $("#pageContent").fadeIn(800); }); //Error handler function showErrorMessage(message) { $("#ErrorDrawer").slideDown(function() { $("#ErrorDrawer").html(message); // colored flash effect $("#ErrorDrawer").css("backgroundColor", "#229"); }); setTimeout("$(\"#ErrorDrawer\").slideUp();",2500); }