﻿function Populate(){
        window.addEvent('domready', function() {
	    //for every switch-view link
	        $$('.CalendarTitle').each( function(el){
	            el.addEvents({
	                'mouseenter': function(){
	                    //Get x and y
	                    var xpos;
	                    var ypos;
	                    xpos = el.getPosition().x;
	                    ypos = el.getPosition().y;
	                    //Show Description
	                    el.getChildren('div').each(function(desc){
                            desc.set('class','DescriptionDisplay');
                            desc.setPosition({x: xpos + 40, y: ypos + 40});
	                    });
	                    
	                    
	                },
	                'mouseleave': function(){
	                    //Hide Discription
	                    el.getChildren('div').each(function(desc){
                            desc.set('class','DescriptionNoDisplay');
	                    });
	                }
	            });
	        
	        });
    });        
}
