$('document').ready(function() {
	
	var cflow = new Coverflow() ;
	cflow.setup() ;
	
	$(window).keydown(function(event) {
		if(event.keyCode == 37)
		{
			cflow.prev() ;
		}
		
		if(event.keyCode == 39)
		{
			cflow.next() ;
		}
	}) ;
	
	$('.slider_step').click(function() {
		
		cflow.goto($(this).attr('id')) ;
		
	}) ;
	
	
	/* TABS */
	$('#intro_tabs .tabs .hover_tabs .hover_tab:first').addClass('act') ;
	
	$('#intro_tabs .stage').children().css({display: 'none'}) ;
	$('#intro_tabs .stage').children().first().css({display: 'block'}) ;
	
	$('#intro_tabs .tabs .trigger_tabs .trigger_tab').mouseenter(function() {
		
		var id = $(this).attr('id').substr(8) ;
		
		var hover = $('#tab_'+id) ;
		
		hover.siblings().removeClass('act') ;
		hover.addClass('act') ;
		
		$('#stage_'+id+'').css({display: 'block'}) ;
		$('#stage_'+id+'').siblings().css({display: 'none'})
		
	}) ;
	
	
}) ;
