$(document).ready(function(){
  $('.homebanner').scrollable({
      circular: true
    }).autoscroll({
      autoplay: true,
      interval: 4000
    }).navigator();
    
    $('a.pause_slideshow').click(function(){
    	if($('a.pause_slideshow').html() == "pause"){
    		$('.homebanner').scrollable().pause();
    		$(this).html('play');
    	} else {
    		$('.homebanner').scrollable().play();
    		$(this).html('pause');
    	};
    });
});
