/*
 * BodyBusiness JavaScript Library
 * http://www.bodybusiness.nl
 */
$(document).ready(function(){ 
	
	$("#cMenu ul li").remove("ul");
	
	$("#cMenu ul li").has("ul").hover(function(){
		$(this).addClass("current").children("ul").fadeIn(100);
	}, function() {
		$(this).removeClass("current").children("ul").stop(true, true).css("display", "none");
	});
	
	$("#cContent tr:even").addClass("odd");
		
});
