jQuery(function($) {
	
	//IE6 fix
	if ($.browser.msie) {
		$('#next, #prev').hover(
			function(){ $(this).addClass('hover'); },
			function(){ $(this).removeClass('hover'); }
		);
	}
	
	var _index = $('#border').text()-1;
	var tone_first = $('#artists .artist:first-child ul li').length;
	
	//Initialisation of the Kairos Slide Show plugin
	$('#projects .item').kairosSlideShow({
		//index: _index
		index: tone_first
	});
	
});
