﻿$(document).ready(function(){$(".productlist > li > a").mouseenter(function(B){var A=$(this).attr("id")+"";var C=A.substr(A.indexOf("-")+1,A.length-A.indexOf("-"))-0;showProduct(C)});$(".hairoscopelist > li").mouseenter(function(B){var A=$(this).attr("id");showHairoscope(A)})});function showProduct(B){var A=new Chs.Web.Frizzoff.ProductService();A.GetProduct(B,getProduct_complete)}function getProduct_complete(A){$("#pName").html(A.ProductName);$("#pShortDesc").html(A.ShortDescription);$("#pLongDesc").html(A.LongDescription);$("#pImage").html("<img alt='"+A.ProductName+"' src='ImageHandler.axd?ImageId="+A.ImageId+"&amp;width=200&amp;height=200&amp;constraint=4&amp;async=false' />")}function showHairoscope(A){var B=new Chs.Web.Frizzoff.ProductService();B.GetHairoscope(A,getHairoscope_complete)}function getHairoscope_complete(A){$("#hSymbol").html(A.Field1Value);$("#hDateRange").html("("+A.Field2Value+")");$("#hDescription").html(A.Field3Value);$("#hImage").html("<img alt='"+A.Field1Value+"' src='images/h_"+A.Field1Value+".png' />")}if(typeof (Sys)!=="undefined"){Sys.Application.notifyScriptLoaded()};
if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();