
$(document).ready(function ()
{
	$('#anim').cycle({ 
	    fx:     'fade', 
	    timeout: 5000, 
	    after:   onAfter ,
	    next: '#backward',
	    prev: '#forward'
	});
	
	$("#playbut").bind("click", playpause) ;
});

function onAfter() {
   var cur_id = this.id;
  // $('#sideBloc_title').html($('#title_'+cur_id).html()+"&nbsp;");
   $('#sideBloc_text').html($('#content_'+cur_id).html());

   
}


function playpause()
{
	if($(this).hasClass("play_act")) 
	{
		$('#anim').cycle('pause');
		$(this).addClass("pause");
		$(this).removeClass("play_act");
	}else
	{
		$('#anim').cycle('resume');
		$(this).addClass("play_act");
		$(this).removeClass("pause");
	}
}
