

(function($){  
    $.fn.iPhoneSlider = function( id ) {
        this.each(function(){
            var $this = $(this);
            var id = $this.attr("title");
            if( $($this).children().size() > 1 ) {
                $($this).cycle( {
                    fx: 'scrollHorz',
                    continuous: false,
                    nowrap: 1,
                    after: function onAfter(curr, next, opts) {
                        var index = opts.currSlide; 
                        $('#bmMall_' + id + '_PrevScreen')[index == 0 ? 'hide' : 'show']();
                        $('#bmMall_' + id + '_NextScreen')[index == opts.slideCount - 1 ? 'hide' : 'show']();
                    },
                    timeout: 0,
                    prev: '#bmMall_' + id + '_PrevScreen',
                    next: '#bmMall_' + id + '_NextScreen' });                
            } else {
                $('#bmMall_' + id + '_PrevScreen').hide();
                $('#bmMall_' + id + '_NextScreen').hide();                
            }
        });
    }
})(jQuery);
