$(document).ready(function(){
 $("#header_move_nav ul.right_block").append('<li><a id="next1" href="#"><img src="images/others/btn_next.jpg" alt="Next" width="45" height="15" /></a></li><li id="play" class="mode_pause"><a href="#"><span>Play</span></a></li><li><a id="prev1" href="#"><img src="images/others/btn_prev.jpg" alt="Prev" width="45" height="15" /></a></li>');
});

$(function() {

 $('#header_block01').cycle({ 
  fx:        'cover',
  direction: 'right',
  cssBefore: {opacity:1},
  animOut:   {opacity:0},
  speed:     500,
  pause:     1,
  prev:      '#prev1',
  next:      '#next1',
  pager:     '#pager',
  timeout:   8000,
//  nowrap: 1,
  pagerAnchorBuilder: pagerFactory
 });

 $('#header_move_nav ul.right_block #play a').toggle(
  function(){
   $('#header_block01').cycle('pause');
   $('#header_move_nav ul.right_block #play').addClass('mode_play');
   $('#header_move_nav ul.right_block #play').removeClass('mode_pause');
  },
  function(){
   $('#header_block01').cycle('resume');
   $('#header_move_nav ul.right_block #play').addClass('mode_pause');
   $('#header_move_nav ul.right_block #play').removeClass('mode_play');
  }
 );

 function pagerFactory(idx, slide) {
  return '<li><a href="#">'+(idx+1)+'</a></li>';
 };

});
