$(document).ready(function(){	

	$(".module2").mouseover(function () {
      $(this).css("background-color","#AECCA3");
    });
	
	$(".module2").mouseout(function () {
      $(this).css("background-color","#C2E3B6");
    });
		
	$(".module2").click(function () {
		var name = $(this).attr("id");					   
//		alert(name);							 	
      	$('#'+name+'_content').toggle("slow");
    });
	
	$(document).pngFix();
});

