$(document).ready(function(){

$(".menuItem").mouseenter(function(){
$(this).css("background-color","#dcdddc");
});

$(".menuItem").mouseleave(function(){
$(this).css("background-color","");
});

$("#contentFrame").delay(1000).effect("highlight", {color:'#fff9e2'}, 1000);

$(".coworkerBox").mouseenter(function() {
$(".coworkerBox").stop(true,true);
$(this).effect("highlight", {color:'#F0F0F0'}, 1000);
});

});
