/*////////////////////////////////////////
// Variables
////////////////////////////////////////*/

/*////////////////////////////////////////
// Functions
////////////////////////////////////////*/
function startView(){
	jQuery(".mainMenu ul li").append("<span class='pipi'></span>");
}

function scrollableUnits(){
	if(jQuery('.scrollArea .item').length > 0){
		jQuery('.scrollArea .next, .scrollArea .prev').removeClass('force-hidden');
	}
	jQuery("#wheeled").scrollable({size:2, mousewheel: true}).autoscroll({interval:7000, steps: 1});
	jQuery("#wheeled2").scrollable({size:3, mousewheel: true});
}

/*////////////////////////////////////////
// jQuery init
////////////////////////////////////////*/
jQuery(document).ready(function(){
	startView();
	scrollableUnits();
});