$(document).ready(function(){
	//Cufon.replace('.HeaderText h1, .HeaderText h2, .HeaderText h3');
	//Cufon.now();
	
	$("body").addClass("Active");
	
    $(".Tab1 .TabLabel").click(function(){
	  if($(".Tab1 .TabContent").width() == 1){
        $(".Tab1 .TabContent").animate({ width: "470px" }, 1500 );
		$(".Tab2 .TabContent").animate({ width: "1px" }, 1500 );
	  }else if($(".Tab1 .TabContent").width() == 470 ){
	    $(".Tab1 .TabContent").animate({ width: "1px" }, 1500 );
	  }
    });
	
    $(".Tab2 .TabLabel").click(function(){
	  if($(".Tab2 .TabContent").width() == 1){
        $(".Tab2 .TabContent").animate({ width: "470px" }, 1500 );
		$(".Tab1 .TabContent").animate({ width: "1px" }, 1500 );
	  }else if($(".Tab2 .TabContent").width() == 470){
	    $(".Tab2 .TabContent").animate({ width: "1px" }, 1500 );
	  }
    });
	
	$(".LeftColumn img").css({ fontWeight: 'normal' });
	
});