jMad.scnEvent={
	init:function()
	{
		//this.bind(null);
		//$(document).click(jMad.scnNews.close);
	}
	,bind:function(html_id)
	{
		var sel=$("#"+html_id);
		//$(sel + ".print a").click($(sel).print());
//		sel.find(".event").hover(
//			function(){$(this).find(".description").show()}
//			,function(){$(this).find(".description").hide()}
//		);
    sel.find(".event").click(function(){
//      if($(this).hasClass("selected")){
//        $(this).removeClass("selected");
//      }else{
        sel.find(".event").removeClass("selected");
        $(this).addClass("selected");
//      }
    });
//    sel.find(".event .description").click(function(){
//
//    });
	}
};
