/* scrollers /**/

// <![CDATA[
$(function() {		
	$("div.scrollable").scrollable({
		vertical: true, 
		size: 1,
		loop: true
	}).mousewheel().circular().autoscroll({
		autoplay: true,
		autopause: true,
		interval: 7000,
		api: true
	}); 
});

//.mousewheel(400)
$(document).ready(function() {
	// select #flowplanes and make it scrollable. use circular and navigator plugins
	$("#flowpanes").scrollable({size:1}).circular().navigator({
	/*
		// select #flowtabs to be used as navigator
		navi: "#flowtabs",

		// select A tags inside the navigator to work as items (not direct children)
		naviItem: 'a',

		// assign "current" class name for the active A tag inside navigator
		activeClass: 'current'
	/**/
	}).autoscroll({
		autoplay:true,
		autopause:true,
		interval:7000,
		api:true
	});;
});
// ]]>

/* table row color strips /**/
// <![CDATA[
$(document).ready(function() {
	$('table.sortable tbody tr:not([th]):nth-child(odd)').addClass('odd');
	$('table.sortable tbody tr:not([th]):nth-child(even)').addClass('even');
});

// ]]>


/* old crossSlide image slider /**/
// <![CDATA[
/*
<script type="text/javascript">
$(function() {
$('#pics2').crossSlide({
sleep: 5,
fade: 1
}, [
{src: 'images/design/header/01.jpg'},
{src: 'images/design/header/02.jpg'},
{src: 'images/design/store2.jpg'},
{src: 'images/design/header/03.jpg'},
{src: 'images/design/header/04.jpg'}
]);
});
</script>
/**/
// ]]>


