var tmpIDName = '';
var tmpActiveName = '';
// JavaScript Document
$(document).ready(function(){
	
	//init
	 $('.toggle-navigation .tab1').addClass('active');
	 $('.tab1-detail').addClass('active');
	 $.getScript("posttoday/js/base.js", function(){ dropDownMenu('');});
	 $.getScript("posttoday/js/featuredcontentglider.js");
	$(".dropdown-navigation").hover(
		function () {
		  $(this).children().show();
		  $(this).addClass('show');
		},
		function () {
		  $(".dropdown-navigation ul").hide();
		  $(this).removeClass('show');
		}
	  );



	// Toggle-navigation-global
    $('.toggle-navigation .tab1').click(function() {
      $(this).parent().children('.tab2').removeClass('active');
      $(this).parent().children('.tab3').removeClass('active');
      $(this).parent().children('.tab4').removeClass('active');
      $(this).parent().next().children('.tab2-detail').removeClass('active');
      $(this).parent().next().children('.tab3-detail').removeClass('active');
      $(this).parent().next().children('.tab4-detail').removeClass('active');
	  $(this).addClass('active');
	  $(this).parent().next().children('.tab1-detail').addClass('active');
    });
    
    $('.toggle-navigation .tab2').click(function() {
      $(this).parent().children('.tab1').removeClass('active');
      $(this).parent().children('.tab3').removeClass('active');
      $(this).parent().children('.tab4').removeClass('active');
      $(this).parent().next().children('.tab1-detail').removeClass('active');
      $(this).parent().next().children('.tab3-detail').removeClass('active');
      $(this).parent().next().children('.tab4-detail').removeClass('active');
      $(this).addClass('active');
	  $(this).parent().next().children('.tab2-detail').addClass('active');
    });
    
    $('.toggle-navigation .tab3').click(function() {
      $(this).parent().children('.tab2').removeClass('active');
      $(this).parent().children('.tab1').removeClass('active');
      $(this).parent().children('.tab4').removeClass('active');
      $(this).parent().next().children('.tab2-detail').removeClass('active');
      $(this).parent().next().children('.tab1-detail').removeClass('active');
      $(this).parent().next().children('.tab4-detail').removeClass('active');
      $(this).addClass('active');
	  $(this).parent().next().children('.tab3-detail').addClass('active');
    });
    
    $('.toggle-navigation .tab4').click(function() {
      $(this).parent().children('.tab2').removeClass('active');
      $(this).parent().children('.tab3').removeClass('active');
      $(this).parent().children('.tab1').removeClass('active');
      $(this).parent().next().children('.tab2-detail').removeClass('active');
      $(this).parent().next().children('.tab3-detail').removeClass('active');
      $(this).parent().next().children('.tab1-detail').removeClass('active');
      $(this).addClass('active');
	  $(this).parent().next().children('.tab4-detail').addClass('active');
    });
    
  
		
	
	 $("#reloadCapha").click(function(){$("#validate_img").attr({src: "/images/captcha.png?"+Math.random()});})
	 $("#validate_img").click(function(){$(this).attr({src: "/images/captcha.png?"+Math.random()});})
	// $("#economic div.thirdPartyInfo ,#business div.thirdPartyInfo").html('<iframe width="200px" height="194px" frameborder="0" scrolling="no" src="http://weblink.settrade.com/banner/banner3.jsp"></iframe>');
 });
