






$(document).ready(function() {


	$('#keyvisual-inner').each(function() {

		this._zindex = 1;
		this._current = 0;
		
		$(this).find('h3').hide();
		$(this).find('h3:first').fadeIn();
		
		setInterval(function() {
		
			_next = $('#keyvisual-inner')[0]._current+1;
			if(_next >= $('#keyvisual-inner h3').length) {
				_next = 0;
			}
			
			$('#keyvisual-inner')[0]._zindex++;
			$('#keyvisual-inner')[0]._current = _next;
			
			$($('#keyvisual-inner').find('h3')[_next]).hide().css('z-index', $('#keyvisual-inner')[0]._zindex).fadeIn(3000);
		
		}, 6000);
	
	});
	
	
	
	$('#content div.content-keyvisual').each(function() {
	
		_tmp = $(this).html();
		$(this).remove();
		
		$('#content-keyvisual-inner').html(_tmp);
	
	});
	
	

	$('#product-sidebar div.head a.button').click(function(e) {
	
		e.preventDefault();
		
		$('#standard-page, .category-nav-standard, .category-prev-next-nav-standard').hide();
		$('#additional-page').show();
		
		$('.category-nav-standard').before('<div class="category-nav category-nav-additional"><div class="category-overview-nav"><a href="#" onclick="_close_detail_page(); return false;">Back <img alt="Overview" src="http://www.telepresenceoptions.com/en/wp-content/themes/tpc/images/btn_back-to-overview.gif" class=" colorbox-manual"></a></div></div>');
		
		$('.category-prev-next-nav-standard').before('<div class="category-prev-next-nav category-prev-next-nav-additional"><div class="inner"><a href="#" onclick="_close_detail_page(); return false;">Back <img alt="Overview" src="http://www.telepresenceoptions.com/en/wp-content/themes/tpc/images/btn_back-to-overview.gif" class=" colorbox-manual"></div><br class="clear"></div>');

	
	});
	
	_close_detail_page = function() {
	
		$('#standard-page, .category-nav-standard, .category-prev-next-nav-standard').show();
		$('#additional-page').hide();
		
		$('.category-nav-additional, .category-prev-next-nav-additional').remove();
	
	}


});
