window.addEvent("domready",function(){
	

// Your code goes here.
init = {
	sliderPeriod: 2000, // time between sliding animations in ms
	sliderSpeed: 1000  // time for a single sliding animation in ms
};

/*

    var box = $('box');

    document.addEvent('mousemove', function(e) {
        box.setStyles({
            top: e.page.y,
            left: e.page.x
        });
    });
*/



   $$('table.minicalendar .info a').addEvent('mouseover', function(ev) {
/*
        ev.stop();
        box.setStyle('display', 'block');
        var sizes = box.getPosition();
        box.set("html", [sizes.x, ' x ', sizes.y].join("<br/>"));
*/

		console.log('test');
        //ev.getElements('.info').setStyle('display', 'block');


    });



$$('table.minicalendar .info a').setPosition({x: 10, y: 100});

//.setStyle('border','1px solid red');

//

















var Tips4 = new Tips($$('table.minicalendar td'), {
	className: 'custom'
});
//console.log(Tips4);




// Browser Adjustment


$$('#main .ce_text tr:nth-child(1) td').addClass('first-child');
$$('#main .ce_text tr:nth-child(2n)').addClass('odd');
$$('#main tr:nth-child(2n+1):last-child td').addClass('odd-last-child');
$$('.overview-article .ce_text:nth-child(2n)').addClass('odd');
$$('#main .overview-article .ce_text table tr:nth-child(1) td').addClass('first-child');


$$('.overview-article .ce_text:nth-child(2n+3)').addClass('even');



window.addEvent('load',function(){
});

});
  
 
