$(function() {

//		var $p1 = $('#slideshow'); 
         
       // add slides to slideshow (images 2-8) 
        //for (var i = 2; i < 9; i++) 
  //      $p1.append('<img src="http://www.walesnationalpoolswansea.co.uk/site/wp-content/themes/wnps/img/slideshow/1.jpg" /><img src="http://www.walesnationalpoolswansea.co.uk/site/wp-content/themes/wnps/img/slideshow/2.jpg" /><img src="http://www.walesnationalpoolswansea.co.uk/site/wp-content/themes/wnps/img/slideshow/3.jpg" /><img src="http://www.walesnationalpoolswansea.co.uk/site/wp-content/themes/wnps/img/slideshow/4.jpg" /><img src="http://www.walesnationalpoolswansea.co.uk/site/wp-content/themes/wnps/img/slideshow/5.jpg" /><img src="http://www.walesnationalpoolswansea.co.uk/site/wp-content/themes/wnps/img/slideshow/6.jpg" />'); 
		   
$('#slideshow').cycle({
		fx: 'fade',
		random: 1,
		timeout:  5500,
		speed:  1500
});

$.fn.newsScroll = function(options) {  
   
     return this.each(function() {     
   
         var  
           $this = $(this),   
   
           defaults = {  
             speed: 400,  
             delay: 3000,  
             list_item_height: $this.children('li').outerWidth()  
          },  
   
           settings = $.extend({}, defaults, options);   
   
       setInterval(function() {  
             $this.children('li:first')  
                     .animate({  
                         marginLeft : '-' + settings.list_item_height,  
                        opacity: 'hide' },  
   
                        settings.speed,  
   
                        function() {  
                             $this  
                               .children('li:first')  
                               .appendTo($this)  
                               .css('marginLeft', 0)  
                              .fadeIn(300);  
                       }  
                   ); // end animate  
       }, settings.delay); // end setInterval  
     });  
 }

$('ul.hscroll').newsScroll({  
         speed: 400,  
         delay: 3000  
}); 

	
});
