
var $Par = {}

$(document).ready(function(){

	// swap delle immagini dell'intestazione
	$('.head1cmd')
	.mouseover(function(){
		var $this = $(this),
			old = $this.attr('src');
		$this.attr('src', old.substr(0, old.length - 4) + '-on.jpg');
		//$Debug.show(old + '<br>' + this.src);
	}).mouseout(function(){
		//$Debug.clear();
		var $this = $(this),
			old = $this.attr('src');
		$this.attr('src', old.substr(0, old.length - 7) + '.jpg');
	});

	// dinamicita' nei calendari
	$('tr.week a,tr.month a').parent()
	.mouseover(function(){
		$(this).addClass('on');
		$Msg.show($(this).children().first().attr('title'));
	}).mouseout(function(){
		$Msg.clear();
		$(this).removeClass('on');
	}).click(function(){
		document.location = $(this).children().first().attr('href');
	});
});




















