jQuery(document).ready(function () {
	if (CS.items.length > 0) {
		CS.init();
	}

	jQuery('.tile img:not(.absolute)').bind('mouseover', function(){
		jQuery('.tile img.absolute:visible').fadeOut();
		jQuery(this).siblings().fadeIn();
	});
	jQuery('.tile img.absolute').bind('mouseout', function(){
		jQuery(this).fadeOut();
	});

	jQuery(window).blur(function(){
		clearTimeout(CS.timer);
	});
	
	jQuery(window).focus(function(){
		CS.startTimer();
	});
	
	jQuery('.height-2x .scroll-vertical').slimScroll({
		height: '392px'
	});
	
	jQuery('.height-1x .scroll-vertical').slimScroll({
		height: '181px'
	});
	
	jQuery('.height-3x .scroll-vertical').slimScroll({
		height: '626px'
	});
});
