
$(function(){
    $('.m_item').hover(function(){
            $(this).find('div.text').animate({left:"180px"}, 300);
        },
        function(){
            $(this).find('div.text').animate({left:"570px"}, 300);
        });
});
   
$(function(){
    $('li.has_event').live('hover mousemove', function(e) {
            if (e.type == 'mouseover') 
            {    
                $(this).find('div.event').animate({opacity:1, bottom:"40px"},200).show();     
            }            
             if (e.type == 'mouseout')
             {
                $(this).find('div.event').animate({opacity:0,bottom:"30px"},200).hide();   
             }
        });
});

   
function move_calendar(m,y,move) {
$('#calendar').empty();
$('#calendar').append('<div style="padding:50px 0; margin:0 auto; width:100px; height:30px;"><img src="/images/load.gif" style="float:left; margin:2px;"></div>')
$.get("/js/move_calendar.php", {m: m, y: y, move: move}, function(data) { // Do an AJAX call

     $('#calendar').empty();    
     $('#calendar').append(data);
     $
});
    
}
 
function addemail(email){
$.get('/js/addemail.php', {email: email}, function(data) {
    $.stickr({note:data,className:'message_popup'});
})


}
