var mycarousel_itemList = [ {html: '

Setteville

wohnung Setteville

wohnung

€ 98.000

'}, {html: '

Prati

wohnung Prati

wohnung

€ 490.000

'}, {html: '

Monteverde

wohnung Monteverde

wohnung

€ 460.000

'}, {html: '

Trastevere

shop Trastevere

shop

€ 3.900

'}, {html: '

Monteverde

wohnung Monteverde

wohnung

€ 390.000

'}, {html: '

Marconi

wohnung Marconi

wohnung

€ 280.000

'}, {html: '

Colli Portuensi

wohnung Colli Portuensi

wohnung

€ 1.100

'}, {html: '

Trastevere

shop Trastevere

shop

€ 4.500

'}, {html: '

Trastevere

shop Trastevere

shop

€ 2.400

'}, {html: '

Monteverde

wohnung Monteverde

wohnung

€ 390.000

'}, {html: '

Trastevere

shop Trastevere

shop

€ 4.500

'}, {html: '

Monteverde

wohnung Monteverde

wohnung

€ 390.000

'}, {html: '

Bravetta

wohnung Bravetta

wohnung

€ 450.000

'}, {html: '

Trastevere

bűro Trastevere

bűro

€ 1.600

'}, {html: '

Portuense

wohnung Portuense

wohnung

€ 188.000

'}, {html: '

Monteverde

wohnung Monteverde

wohnung

€ 295.000

'}, {html: '

Monteverde

wohnung Monteverde

wohnung

€ 439.000

'}, {html: '

Ardeatino

shop Ardeatino

shop

€ 69.000

'}, {html: '

Portuense

wohnung Portuense

wohnung

€ 169.000

'}, {html: '

Marconi

garage Marconi

garage

€ 28.000

'}, {html: '

Setteville

wohnung Setteville

wohnung

€ 98.000

'}, {html: '

Portuense

wohnung Portuense

wohnung

€ 169.000

'}, {html: '

Portuense

wohnung Portuense

wohnung

€ 188.000

'}, {html: '

Casetta Mattei

wohnung Casetta Mattei

wohnung

€ 169.000

'}, {html: '

Monteverde

wohnung Monteverde

wohnung

€ 460.000

'} ]; function mycarousel_itemVisibleInCallback(carousel, item, i, state, evt) { // The index() method calculates the index from a // given index who is out of the actual item range. var idx = carousel.index(i, mycarousel_itemList.length); carousel.add(i, mycarousel_getItemHTML(mycarousel_itemList[idx - 1])); }; function mycarousel_itemVisibleOutCallback(carousel, item, i, state, evt) { carousel.remove(i); }; function mycarousel_getItemHTML(item) { return item.html; }; jQuery(document).ready(function() { jQuery('#mycarousel').jcarousel( { auto: 3, scroll: 1, wrap: 'circular', itemVisibleInCallback: {onBeforeAnimation: mycarousel_itemVisibleInCallback}, itemVisibleOutCallback: {onAfterAnimation: mycarousel_itemVisibleOutCallback} }); });