/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function importStylesheet(sheetUrl) {
  var ss = document.createElement("link");
  ss.rel = "stylesheet";
  ss.href = sheetUrl;
  ss.type = "text/css";
  document.getElementsByTagName("head")[0].appendChild(ss);
}
$(document).ready(function(){
    if(screen.width > 1024){
        importStylesheet("../style/helpdesk-1280.css");
    }else if (screen.width == 1024) {
        importStylesheet("../style/helpdesk-1024.css");
    }else{
        importStylesheet("../style/helpdesk-800.css");
    }

    $('#helpdeskmenu').hover(
        function(){
            $('#helpdeskmenu').empty().html("<div class='helpdesktext'><br/><a href='helpdesk.php' class='ui-button ui-state-default ui-corner-all'><font class='helpdeskcontent'>Help Desk</font></a></div>");
        },
        function(){
            $('#helpdeskmenu').empty().html("<div style='text-align:center;'><img src='image/black_oo.gif' style='margin:4px;'/></div><div class='helpdeskmenutext'>Help</div>");
        }
        );
});

