$(document).ready(function()
{
  //for div
  $('#show_gal').cycle({
	next: '#next',
	prev: '#prev',
	speed: 300,
	timeout: 3000,
	before: function(){
		$('#type').html(this.title);
	}
	

});

$('#play-pause').click(function() {


  if ($(this).hasClass('paused')) {


    $('#show_gal').cycle('resume');
    $(this).removeClass('paused').text('Pause');

  } //if
  else {


    $('#show_gal').cycle('pause');
    $(this).addClass('paused');

  } //else
  return false;
});
});


