
$(document).ready(function(){

	$(".info_box_green .header td").mouseover(function(){
		//$(this).addClass('current');
	}).mouseout(function(){
		//$(this).removeClass('current');
	});


	$(".info_box_green .header td").click(function () { 
		//alert($(this).attr('id'));
		$(".info_box_green .header td").removeClass('current');

		$(this).addClass('current');
		$(".info_box_green .content .section").css("display","none");
		$(".info_box_green .content #" + $(this).attr('id') + "-content").fadeIn();



	});


});
