// product tabs script //


$(document).ready(function() {
	
	
	$('.tab_content').hide();
	$('.tab_content:first').show();
	$('ul#home_tabs li:first').addClass("active");
			
	
	$('ul#home_tabs li').click(function() {
				$('ul#home_tabs li').removeClass("active");
				$(this).addClass("active");
				$('.tab_content').hide();
				
				var activeTab = $(this).find('a').attr('href');
				$(activeTab).fadeIn();
				$(this).addClass('active');
				
				var backIndex = $(this).find('a').attr('rel'); // gets the rel value from the list item's position
				var backPosition = backIndex * -31; // multiplies the above value by 50 to get the Y value for moving the tab background sprite around to display the right graphic
				$('#home_tab_menu').css('backgroundPosition', '0px ' + backPosition+'px');
				
				return false;
	
		});
		
	
	});
