/**
 * @author Andreea Costea
 */

$(document).ready(function(){

	$(".aseria2").click(function() {
		$("#table-seria2").slideToggle(1000);
	}
	)
	
	$('a.seria2-top').click(
			function()
			{
				$('.aseria2').ScrollTo(600, 'easein');
				return false;
			}
	);
	
		

	$("#main-menu ul").hide();
	
	
	if (document.all&&document.getElementById) {
	navRoot = document.getElementById("main-menu");
	for (i=0; i<navRoot.childNodes.length; i++) {
	node = navRoot.childNodes[i];
	if (node.nodeName=="LI") {

		node.onmouseover=function() {
		this.className+=" over";
	 	}	
		node.onmouseout=function() {
		this.className=this.className.replace(" over", "");
		}
	  }
	 }
	}
	
	

});


