var ChangeMonth = function(data){
    $("#news_calendar_collumn").html(data);
    $(".news_item").bind('click',function(){$.get($(this).find("a").stop().attr("href").replace( /#.*/, ""),  { "ajax_call": "true"}, function(data){$("#news_calendar_item_box").html(data);});$(this).addClass("selected").siblings().removeClass("selected"); return false;});
    $(".news_item").hover(function(){$(this).addClass("hover").find("span").animate({marginLeft:"6px"})},function (){$(this).removeClass("hover").find("span").animate({marginLeft:"0px"})});
    $(".prevous_month,.next_month").bind('click',function(){$.get($(this).attr("href").replace( /#.*/, ""),{"ajax_month":"true"},ChangeMonth,"html")});
}
$(document).ready(function(){
	$(".news_item").bind('click',function(){$.get($(this).find("a").stop().attr("href").replace( /#.*/, ""),  { "ajax_call": "true"}, function(data){$("#news_calendar_item_box").html(data);});$(this).addClass("selected").siblings().removeClass("selected");return false;});
	$(".news_item").hover(function(){$(this).addClass("hover").find("span").animate({marginLeft:"6px"})},function (){$(this).removeClass("hover").find("span").animate({marginLeft:"0px"})});
        $(".prevous_month,.next_month").bind('click',function(){$.get($(this).attr("href").replace( /#.*/, ""),{"ajax_month":"true"},ChangeMonth,"html")});
});
