﻿//
// Creates menu based on current location
//
//gets page name of current page
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
//alert(sPage);
//
//home menu item
document.write("<a href='index.html' onmouseout=MM_swapImgRestore(); onmouseover=MM_swapImage('cbhome','','images/nav/cbhome2.gif',1); ><img name='cbhome' src='images/nav/cbhome.gif' border='0' id='cbhome' alt='Care Bears Home' /></a>");
if (sPage=='index.html'){
    $("cbhome").src='images/nav/cbhome2.gif';
}
//
//products menu item
document.write("<a href='#' onclick=newWindow('http://www.agkidzone.com/parents/care-bears/shop/juniors'); onmouseout=MM_swapImgRestore(); onmouseover=MM_swapImage('cbproducts','','images/nav/cbproducts2.gif',1);><img name='cbproducts' src='images/nav/cbproducts.gif' border='0' id='cbproducts' alt='Products Page' /></a>");
if (sPage=='products.html'){
    $("cbproducts").src='images/nav/cbproducts2.gif';
}
//
//wallpaper menu item
document.write("<a href='wallpaper.html' onmouseout=MM_swapImgRestore(); onmouseover=MM_swapImage('cbwallpaper','','images/nav/cbwallpaper2.gif',1);><img name='cbwallpaper' src='images/nav/cbwallpaper.gif' border='0' id='cbwallpaper' alt='Wallpaper Page' /></a>");
if (sPage=='wallpaper.html'){
    $("cbwallpaper").src='images/nav/cbwallpaper2.gif';
}
//
//games menu item
document.write("<a href='games.html' onmouseout=MM_swapImgRestore(); onmouseover=MM_swapImage('cbgames','','images/nav/cbgames2.gif',1);><img name='cbgames' src='images/nav/cbgames.gif' border='0' id='cbgames' alt='Games Page' /></a>");
if (sPage=='games.html'){
    $("cbgames").src='images/nav/cbgames2.gif';
}

