
var bannerCounter = 4;
var bannerSpeed = 6000;	
var animate_speed = 400;
var property = "width";
var property_default = 105;
var property_val_1 = 80;
var property_val_2 = 130;
var property_val_3 = 115;
var property_val_4 = 110;
var ease = "linear";


$(document).ready(function(){
	

$("#switch_page_1").stop("true" , "true").fadeTo(animate_speed, 1);
$("#tab_1").stop("true" , "true").fadeTo(animate_speed, 1);

$("#switch_page_2").stop("true" , "true").fadeTo(animate_speed, 1);
$("#tab_2").stop("true" , "true").fadeTo(0, 1);

$("#switch_page_3").stop("true" , "true").fadeTo(animate_speed, 0);
$("#tab_3").stop("true" , "true").fadeTo(0, 0.25);


	
	$("#tab_1").mouseover(function(){
			$("#switch_page_1").stop("true" , "true").fadeTo(animate_speed, 1);
			$("#switch_page_2").stop("true" , "true").fadeTo(animate_speed, 0);
			$("#switch_page_3").stop("true" , "true").fadeTo(animate_speed, 0);
			
						
			$("#tab_1").stop("true" , "true").fadeTo(animate_speed, 1);
			$("#tab_2").stop("true" , "true").fadeTo(animate_speed, 0.25);
			$("#tab_3").stop("true" , "true").fadeTo(animate_speed, 0.25);

			$("#switch_page_1").css('z-index', 1000);
			$("#switch_page_2").css('z-index', 999);
			$("#switch_page_3").css('z-index', 999);

	});	
	
	
	
	$("#tab_2").mouseover(function(){
			$("#switch_page_2").stop("true" , "true").fadeTo(animate_speed, 1);
			$("#switch_page_1").stop("true" , "true").fadeTo(animate_speed, 0);
			$("#switch_page_3").stop("true" , "true").fadeTo(animate_speed, 0);
									
			$("#tab_1").stop("true" , "true").fadeTo(animate_speed, 0.25);
			$("#tab_2").stop("true" , "true").fadeTo(animate_speed, 1);
			$("#tab_3").stop("true" , "true").fadeTo(animate_speed, 0.25);

			$("#switch_page_1").css('z-index', 999);
			$("#switch_page_2").css('z-index', 1000);
			$("#switch_page_3").css('z-index', 999);
	});	
	
	
	
	$("#tab_3").mouseover(function(){
			$("#switch_page_3").stop("true" , "true").fadeTo(animate_speed, 1);
			$("#switch_page_2").stop("true" , "true").fadeTo(animate_speed, 0);
			$("#switch_page_1").stop("true" , "true").fadeTo(animate_speed, 0);
			
			$("#tab_1").stop("true" , "true").fadeTo(animate_speed, 0.25);
			$("#tab_2").stop("true" , "true").fadeTo(animate_speed, 0.25);
			$("#tab_3").stop("true" , "true").fadeTo(animate_speed, 1);

			$("#switch_page_1").css('z-index', 999);
			$("#switch_page_2").css('z-index', 999);
			$("#switch_page_3").css('z-index', 1000);
	});	
	
});


