Sorry, below is the php script if that helps ??
/**
* jQuery Scrollable2
*/
function isys_scrollable2( $cat = 1, $entry_id = 1, $orderby = 'date' ){
// default start
$start = 1;
?>
<section class="image-slider2 clearfix">
<div class="scrollable2" id="scrollable-2">
<div class="items">
<?php
// get all available items
$_query = new WP_Query(array('cat' => $cat, 'posts_per_page' => 100, 'post_status' => 'publish', 'orderby' => $orderby, 'order' => 'ASC'));
if($_query->have_posts()):
$_items = array();
$i = 1;
while($_query->have_posts()): $_query->the_post();
// start
if( get_the_ID() == $entry_id ): $start = $i; endif;
// items
$_items[ $i++ ] = array(
'id' => get_the_ID(),
'permalink' => get_permalink(),
'thumbnail' => get_the_post_thumbnail(),
'title' => get_post_custom_values('Title'),
'category' => get_post_custom_values('Category'),
'excerpt' => get_the_excerpt()
);
endwhile;
endif;
// splice and rearrange items
$slice = array_splice($_items, 0, $start);
array_splice($_items, count($_items), 0, $slice);
?>
<?php if( count($_items) > 0 ): $i = 0; $_count = count( $_items ); foreach( $_items as $_item ): ?>
<?php if( $i == 0 OR $i%4 == 0 ): ?>
<ul>
<?php endif; ?>
<li><a href="<?php print $_item['permalink']; ?>"><div class="entry-preview"><?php print $_item['thumbnail']; ?><div class="custom-field-title"><?php print $_item['title']['0']; ?><span><?php print $_item['category']['0']; ?></span><div class="gallery-excerpt"><span><?php print $_item['excerpt']; ?></span> </div></div></div></a></li>
<?php $i++; if( ( $i == $_count ) OR ( $i > 0 && $i%4 == 0 ) ): ?>
</ul>
<?php endif; ?>
<?php endforeach; endif; ?>
</div>
</div><!-- .scrollable -->
</section><!-- .image-slider -->
<?php
}