/*nav*/
window.addEvent('domready', function() {
/*
// ¸ß¼¶ËÑË÷Í¼Æ¬½Å±¾Æô¶¯
var myCfe = new cfe.base();

myCfe.init({spacer: "gfx/spacer.gif"});
*/
	
	
	var szNormal = 108, szSmall  = 80, szFull   = 188;

			var imageMenu = $$("#imageMenu .kwick");
			var fxmn = new Fx.Elements(imageMenu, {wait: false, duration: 500});
			imageMenu.each(function(kwick, i) {
				kwick.addEvent("mouseenter", function(event) {
					var o = {};
					o[i] = {width: [kwick.getStyle("width").toInt(), szFull]}
					imageMenu.each(function(other, j) {
						if(i != j) {
							var w = other.getStyle("width").toInt();
							if(w != szSmall) o[j] = {width: [w, szSmall]};
						}
					});
					fxmn.start(o);
				});
			});
			$("imageMenu").addEvent("mouseleave", function(event) {
				var o = {};
				imageMenu.each(function(kwick, i) {
					o[i] = {width: [kwick.getStyle("width").toInt(), szNormal]}
				});
				fxmn.start(o);
			});
//var pos = location.href.indexOf('.');alert(pos);
//var shref=location.href.substring(0,pos);
var shref=location.href;
switch(shref){
case '#':
        $$('.homex').set('class','homex kwick currentnav');
		$$('.kwick').setStyle('width','100px');
        $$('.currentnav').setStyle('width','190px');
        break;
case '#':
        $$('.women').set('class','women kwick currentnav');
		$$('.kwick').setStyle('width','80px');
        $$('.currentnav').setStyle('width','190px');
        break;
case '#':
        $$('.cy').set('class','cy kwick currentnav');
		$$('.kwick').setStyle('width','80px');
        $$('.currentnav').setStyle('width','190px');
        break;
case '#':
        $$('.mz').set('class','mz kwick currentnav');
		$$('.kwick').setStyle('width','60px');
        $$('.currentnav').setStyle('width','190px');
        break;
case '#':
        $$('.ss').set('class','ss kwick currentnav');
		$$('.kwick').setStyle('width','60px');
        $$('.currentnav').setStyle('width','190px');
        break;
case '#':
        $$('.men').set('class','men kwick currentnav');
		$$('.kwick').setStyle('width','60px');
        $$('.currentnav').setStyle('width','190px');
        break;
//case '#':
        //$$('.stars').set('class','homex kwick currentnav');
		//$$('.kwick').setStyle('width','100px');
        //$$('.currentnav').setStyle('width','309px');
        //break;
//case 'http://':
//        $$('.my').set('class','homex kwick currentnav');
//		$$('.kwick').setStyle('width','86px');
//        $$('.currentnav').setStyle('width','309px');
//        break;
//default:
}
//alert('Finish');
});