// JavaScript Document
/*
Name of the stylesheet : tabs.js
personal name : v. sudhir
Date of last modification of the javascript : 08/02/2010
Use of the javasript for the website : "the javascript used for tabs on page")
*/

// jquery for change the big image....
$('document').ready(function(){
	
	$('#tb1').click(function(){
		$('.big-img').show();
		$('.big-img2').hide();
		$('.big-img3').hide();
		
		$('.tab-inner1').addClass('tab-active1');
		$('.tab-inner1').removeClass('tab-inner1');		
		
		$('.tab-active3').addClass('tab-inner3');
		$('.tab-active3').removeClass('tab-active3');
		
		$('.tab-active2').addClass('tab-inner2');
		$('.tab-active2').removeClass('tab-active2');
		
	});
	$('p.tab-inner2').click(function(){
		$('.big-img').hide();
		$('.big-img2').show();
		$('.big-img3').hide();
		
		$('.tab-inner2').addClass('tab-active2');
		$('.tab-inner2').removeClass('tab-inner2');		
		
		$('.tab-active3').addClass('tab-inner3');
		$('.tab-active3').removeClass('tab-active3');
		
		$('.tab-active1').addClass('tab-inner1');
		$('.tab-active1').removeClass('tab-active1');
	});
	$('#tb3').click(function(){
		$('.big-img').hide();
		$('.big-img2').hide();
		$('.big-img3').show();
		
		$('.tab-inner3').addClass('tab-active3');
		$('.tab-inner3').removeClass('tab-inner3');
		
		$('.tab-active2').addClass('tab-inner2');
		$('.tab-active2').removeClass('tab-active2');
		
		$('.tab-active1').addClass('tab-inner1');
		$('.tab-active1').removeClass('tab-active1');
		
		
	});
});
