$(document).ready(function(){ 
	 // initialize scrollable  
	window.api = $(".scrollable").scrollable({ 
        items: '#container',
		size: 2,
		speed: 500,
		easing: 'swing',
		clickable: false,
		disabledClass: 'disabled',
		next: '#next', 
    	prev: '#prev' 
    }).circular().autoscroll({ 
		autoplay: true,
		interval: 6000,
		api: true 
	});
	
	$("#projectlist").innerfade({
		speed: 2000,
		timeout: 6000
	});
	
	if ($('#slider').length) {
		$('#slider').nivoSlider({
			effect:'random',
			slices:15,
			animSpeed:1000,
			pauseTime:5000,
			directionNav:false,
			directionNavHide:true,
			controlNav:false,
			pauseOnHover:false
		});
	}
	
	$("#category").selectbox();
});
