// JavaScript Document
// Created 06nov2009 ktp
// This document has the following parts:
// 1. Set footer links for EN and JP environments	
// 2. Update display of elements in the shopping cart	
// 3. Hide tagged FAQ classes, make them available for hide/show toggle
// 4. Manage display of links in left Column 1 *pending*

	$(document).ready(function(){
							   
	// 1. Set footer links for EN and JP environments						   
	
	if(g('changelang').href.indexOf('=en')>0){
		//Make Japanese page links
		//Note JP page names/titles must be encoded to work as URL hrefs
		$('#B2BLink').hide();
		$('#FAQLink').attr('href','/pages/FAQ%20%20%E3%82%88%E3%81%8F%E3%81%82%E3%82%8B%E8%B3%AA%E5%95%8F.html');
		$('#AboutUsLink').attr('href','/pages/iwine.jp%20%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6.html');
		$('#PrivacyPolicyLink').attr('href','/pages/%E3%83%97%E3%83%A9%E3%82%A4%E3%83%90%E3%82%B7%E3%83%BC%E3%83%9D%E3%83%AA%E3%82%B7%E3%83%BC.html');
		$('#ContactUsLink').attr('href','/pages/%E3%81%8A%E5%95%8F%E5%90%88%E3%81%9B.html');
		$('#UnsubscribeLink').attr('href','/pages/%E3%83%A1%E3%83%AB%E3%83%9E%E3%82%AC%E7%AE%A1%E7%90%86.html');
		$('#ShippingLink').attr('href','/pages/%E9%85%8D%E9%80%81%E3%83%BB%E3%81%8A%E6%94%AF%E6%89%95%E3%81%84%E3%83%BB%E8%BF%94%E5%93%81.html');
		$('#AffiliateProgramLink').attr('href','http://recruit.valuecommerce.ne.jp/ptn/2163076/');
		$('#AffiliateProgramLink').next().hide();

                // Insert Japanese images for the default EN ones.
                $('#iwine_club img').attr('src','/templates/Furniture/images/homepage/iwine_club.jpg')
                $('#teradalink img').attr('src','/templates/Furniture/images/homepage/terada_link.gif')
                $('#shipping img').attr('src','/templates/Furniture/images/homepage/shipping.gif')

                // We'll want to show an English news banner at some point...
		
		
	}else{
		//Make English page links
		$('#ShippingLink').hide();
		$('#ShippingLink').next().hide();
		$('#AffiliateProgramLink').hide();
		$('#AffiliateProgramLink').next().hide();
		$('#FAQLink').attr('href','/pages/Frequently%20Asked%20Questions.html');
		$('#AboutUsLink').attr('href','/pages/About%20iwine%2Ejp.html');
		$('#PrivacyPolicyLink').attr('href','/pages/Privacy%20Policy.html');
		$('#ContactUsLink').attr('href','/pages/Contact%20Us.html');
		$('#UnsubscribeLink').attr('href','/pages/Manage%20Your%20iwine.jp%20Subscriptions.html');
		$('#B2BLink').attr('href','/pages/Trade%20Customers.html');
                $('#shipping .link a').attr('href','/pages/Shipping%20&%20Returns.html');
                

                // Hide the Japanese news banner
                $('#HomePageNewsBanner').hide();
                $('#Twitter').hide();

                // Hide Japanese SEO footer links
                $('#SEOFooterLinks').hide();


             
	}
	
	// 2. Update display of elements in the shopping cart		
	$('table.CartContents a.EstimateShippingLink').parent().parent().css('display','none');
	
	
	// 3. Hide tagged FAQ classes, make them available for hide/show toggle
	$('.FAQ_Answer').hide();								 
		$('.FAQ_Container .FAQ_Question').toggle(
			function(){
				$(this).next('.FAQ_Answer').fadeIn();
				$(this).addClass('Close');
			},
			function(){
				$(this).next('.FAQ_Answer').fadeOut();
				$(this).removeClass('Close');   
			}
		); //end toggle


         // 4. Hide tagged Grape Varietal classes, make them available for hide/show toggle
	$('.GrapeVarietal_Text').hide();
		$('.GrapeVarietal_Container .GrapeVarietal_Link').toggle(
			function(){
				$(this).next('.GrapeVarietal_Text').fadeIn();
				$(this).addClass('Close');
			},
			function(){
				$(this).next('.GrapeVarietal_Text').fadeOut();
				$(this).removeClass('Close');
			}
		); //end toggle


	
	});  // end ready statement
