$(function(){
	
	$('.tab_background').hide().eq(0).show();
	$('.tabbed_page').hide().eq(0).show();
	
	bowls = Array("bowl.png", "bowl2.png", "bowl3.png")
	bears = Array("products_teddy", "products_teddy2", "products_teddy3")
	prev_bg_image = ""
	
	
	$("#tab_links a").click(function(){
		
		$('#tab_links .current').removeClass("current")
		
		$(this).parent().addClass("current")
		
		/* Swap bowl and bear
		***************************/
		$('#bowl img').attr({
			src: "images/" + bowls[$(this).parent().index()]
		})
		
		if(prev_bg_image != bears[$(this).parent().index()]){
			$('#outer_wrapper').removeClass(prev_bg_image)
			$('#outer_wrapper').addClass(bears[$(this).parent().index()])
			prev_bg_image = bears[$(this).parent().index()]
		}
		
		
		
		$('.tab_background').hide().eq($(this).parent().index()).show()
		
		$('.tabbed_page').fadeOut().eq($(this).parent().index()).fadeIn()
		
		return false;
		
	})
	
})
