		$(document).ready(function() {
                       
            $("#homeProductDeluxe").addClass("homeProductDeluxeFeature");
            $("#homeProductDetailsDeluxe").addClass("homeProductDetailsDeluxeFeature");
            $("#homeProductDeluxeES").addClass("homeProductDeluxeFeatureES");
            $("#homeProductDetailsDeluxeES").addClass("homeProductDetailsDeluxeFeatureES");
			
			$("#homeProductFree").hoverIntent(animateProductsUp,animateProductsDown);
			$("#homeProductDeluxe").hoverIntent(animateProductsUp,animateProductsDown);
			$("#homeProductPremium").hoverIntent(animateProductsUp,animateProductsDown);
			$("#homeProductSignature").hoverIntent(animateProductsUp,animateProductsDown);
			$("#homeProductFreeES").hoverIntent(animateProductsUp,animateProductsDown);
			$("#homeProductDeluxeES").hoverIntent(animateProductsUp,animateProductsDown);
			$("#homeProductPremiumES").hoverIntent(animateProductsUp,animateProductsDown);
			$("#homeProductSignatureES").hoverIntent(animateProductsUp,animateProductsDown);
			var language = getLanguage();
			
			
			function animateProductsUp() {
				var homeProductDetails = "";
                
                if (language == "1033") {
                    // English
                    topValueUp = "-=100px";
			        heightValueUp = "215px";
                } else {
                    // Spanish
                    topValueUp = "-=155px";
			        heightValueUp = "275px"; 
                }
                
			    
				$("#" + this.id + " p").fadeIn("slow");
				$(this).animate({
				top: topValueUp,
				height: heightValueUp
				});
				
				
				switch(this.id) {
					case "homeProductFree":
						$(this).addClass("homeProductFreeHover");
						$(this).removeClass("homeProductFreeStatic");
						$("#homeProductDetailsFree").addClass("homeProductDetailsFreeActive");
						$("#homeProductFree .homeProductMoreArrow").hide();
						break;
					case "homeProductDeluxe":
					    $(this).removeClass("homeProductDeluxeFeature");
					    $(this).removeClass("homeProductDeluxeStatic");
						$("#homeProductDetailsDeluxe").removeClass("homeProductDetailsDeluxeFeature");
						$(this).addClass("homeProductDeluxeHover");
						$("#homeProductDetailsDeluxe").addClass("homeProductDetailsDeluxeActive");
						$("#homeProductDeluxe .homeProductMoreArrow").hide();
						break;
					case "homeProductPremium":
						$(this).addClass("homeProductPremiumHover");
						$(this).removeClass("homeProductPremiumStatic");
						$("#homeProductDetailsPremium").addClass("homeProductDetailsPremiumActive");
						$("#homeProductPremium .homeProductMoreArrow").hide();
						break;
					case "homeProductSignature":
						$(this).addClass("homeProductSignatureHover");
						$(this).removeClass("homeProductSignatureStatic");
						$("#homeProductDetailsSignature").addClass("homeProductDetailsSignatureActive");
						$("#homeProductSignature .homeProductMoreArrow").hide();
						break;
						
					case "homeProductFreeES":
						$(this).addClass("homeProductFreeHoverES");
						$("#homeProductDetailsFree").addClass("homeProductDetailsFreeActive");
						$(this).removeClass("homeProductFreeStaticES");
						$("#homeProductFreeES .homeProductMoreArrow").hide();
						break;
					case "homeProductDeluxeES":
					    $(this).removeClass("homeProductDeluxeFeatureES");
						$("#homeProductDetailsDeluxe").removeClass("homeProductDetailsDeluxeFeature");
						$(this).removeClass("homeProductDeluxeStaticES");
						$(this).addClass("homeProductDeluxeHoverES");
						$("#homeProductDetailsDeluxe").addClass("homeProductDetailsDeluxeActive");
						$("#homeProductDeluxeES .homeProductMoreArrow").hide();
						break;
					case "homeProductPremiumES":
						$(this).addClass("homeProductPremiumHoverES");
						$(this).removeClass("homeProductPremiumStaticES");
						$("#homeProductDetailsPremium").addClass("homeProductDetailsPremiumActive");
						$("#homeProductPremiumES .homeProductMoreArrow").hide();
						break;
					case "homeProductSignatureES":
						$(this).addClass("homeProductSignatureHoverES");
						$(this).removeClass("homeProductSignatureStaticES");
						$("#homeProductDetailsSignature").addClass("homeProductDetailsSignatureActive");
						$("#homeProductSignatureES .homeProductMoreArrow").hide();
						break;
				}
					
			}

			function animateProductsDown() {
				var homeProductDetails = "";
				
				    if (language == "1033") {
				        // English
					    topValueDown = "+=100px";
					    heightValueDown = "115px";
					} else {
					    // Spanish
					    topValueDown = "+=155px";
					    heightValueDown = "175px";
					}
				
				switch(this.id) {
					case "homeProductFree":
						
						$(this).removeClass("homeProductFreeHover");
						$(this).addClass("homeProductFreeStatic");
						$("#homeProductDetailsFree").removeClass("homeProductDetailsFreeActive");
						$("#homeProductFree .homeProductMoreArrow").fadeIn("slow");
						break;
					case "homeProductDeluxe":
						$(this).removeClass("homeProductDeluxeHover");
						$(this).addClass("homeProductDeluxeStatic");
						$("#homeProductDetailsDeluxe").removeClass("homeProductDetailsDeluxeActive");
						$("#homeProductDeluxe .homeProductMoreArrow").fadeIn("slow");
						break;
					case "homeProductPremium":
						$(this).removeClass("homeProductPremiumHover");
						$(this).addClass("homeProductPremiumStatic");
						$("#homeProductDetailsPremium").removeClass("homeProductDetailsPremiumActive");
						$("#homeProductPremium .homeProductMoreArrow").fadeIn("slow");
						break;
					case "homeProductSignature":
						$(this).removeClass("homeProductSignatureHover");
						$(this).addClass("homeProductSignatureStatic");
						$("#homeProductDetailsSignature").removeClass("homeProductDetailsSignatureActive");
						$("#homeProductSignature .homeProductMoreArrow").fadeIn("slow");
						break;
						
					case "homeProductFreeES":
						
						$(this).removeClass("homeProductFreeHoverES");
						$(this).addClass("homeProductFreeStaticES");
						$("#homeProductDetailsFree").removeClass("homeProductDetailsFreeActive");
						$("#homeProductFreeES .homeProductMoreArrow").fadeIn("slow");
						break;
					case "homeProductDeluxeES":
						$(this).removeClass("homeProductDeluxeHoverES");
						$(this).addClass("homeProductDeluxeStaticES");
						$("#homeProductDetailsDeluxe").removeClass("homeProductDetailsDeluxeActive");
						$("#homeProductDeluxeES .homeProductMoreArrow").fadeIn("slow");
						break;
					case "homeProductPremiumES":
						$(this).removeClass("homeProductPremiumHoverES");
						$(this).addClass("homeProductPremiumStaticES");
						$("#homeProductDetailsPremium").removeClass("homeProductDetailsPremiumActive");
						$("#homeProductPremiumES .homeProductMoreArrow").fadeIn("slow");
						break;
					case "homeProductSignatureES":
						$(this).removeClass("homeProductSignatureHoverES");
						$(this).addClass("homeProductSignatureStaticES");
						$("#homeProductDetailsSignature").removeClass("homeProductDetailsSignatureActive");
						$("#homeProductSignatureES .homeProductMoreArrow").fadeIn("slow");
						break;
				}
				
				$("#" + this.id + " p").hide();
				
				$(this).animate({
					top: topValueDown,
					height: heightValueDown
				});
		}
		});