$('document').ready(function(){ $('.market-images').slideshow({ timeout: 8000, fadetime: 3000 }); $('.downloadable').live('click', function(){ var self = $(this); var href = self.attr('href'); href = href.split('/'); href = href[(href.length - 1)].split('.'); window.open('/dwnld/index/' + href[0]); return false; }); });