$(document).ready(function () {

	$("img.pngFix").ifixpng();
	//jQuery.fx.off();
	$("#cContent").hide();
	$("#cTop").click(function(){
		if($("#cContent").css('display') == 'none'){
			$("#cContent").slideDown();
		}else{
			$("#cContent").slideUp();
		}
	});
	/*
	jQuery.each($(".mContainer"),function(){
		$(this).children('ul').hide();
		$(this).mouseover(function(){
			$(this).children('ul').slideDown();
		});
		$(this).mouseout(function(){
			$(this).children('ul').slideUp();
		});
	});
	*/
});