
$(document).ready(function() {	
	
	
	$('.items').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    next:   '.rightArrow_', 
    prev:   '.leftArrow_' 
});

	
	/*
	$('#header').scrollable({
		size: 1,
		speed: 300,
		items: '.items',
		next: '.rightArrow_',
		prev: '.leftArrow_',
		circular: true
	}).autoscroll({ autoplay: true, interval: 3000 });
	
	
	$('.productGallery').scrollable({
		size: 3,
		speed: 300,
		items: '.items',
		next: '.rightArrow',
		prev: '.leftArrow'
	});
	*/
	$('.arrow').click(function(event) { event.preventDefault(); });		
	$('.arrow').mousedown(function() { $(this).css('margin-top', '2px'); });
	$('.arrow').mouseup(function() { $(this).css('margin-top', '0'); });
	
	$('.textBox').last().addClass('last');
	$('#bottomNav li:last-child').addClass('last');
	$('.pagination a:first-child').addClass('first');
	$('.pagination a:last-child').addClass('last');
	
	
	$('#bottomNav li').each(function() {
		if ($(this).hasClass('last')) { return false; } 
		else { $(this).append('|'); }
	});
	
	
	

});

