/**
 * @author arjen
 */

$(function() {

	// columns
	$("table.calendar tr.weekdays th a").mouseover( function() {
		var iIndex = $(this).parent().parent().children('th').index($(this).parent()[0]);
		$("table.calendar tr td:nth-child(" + (iIndex+1) + ") a").addClass('active');
	 });
	$("table.calendar tr.weekdays th a").mouseout( function() {
		var iIndex = $(this).parent().parent().children('th').index($(this).parent()[0]);
		$("table.calendar tr td:nth-child(" + (iIndex+1) + ") a").removeClass('active');
	 });
	 
	// rows
	 /*
	$("table.calendar th.weeknr a").mouseover( function() {
		$(this).parent().parent().children().children('a').addClass('active') });
	$("table.calendar th.weeknr a").mouseout( function() {
		$(this).parent().parent().children().children('a').removeClass('active') });
	*/
	
	
});