function getFans(artist_id, type) { var url = 'http://www.nuconrad.com//ajax/artist.php'; new Ajax.Request( url, { parameters: { artist_id: artist_id, type : type }, onSuccess: function(transport) { $('scroll-contaner').update(transport.responseText); slideShow.initailizeSlide(); } } ); }