jQuery(function(){
	/**
	*	Jquery Horizontal Slide Navigation
	*	webmaster@chazzuka.com
	*	http://www.chazzuka.com
	*	Nov 13th 2008 @ Denpasar, Bali Paradise Island
	**/
	//@ active scroll
    var _active = null;
	var _activeTab = null;
	var _left = 0;
	//@ max expand in pixel
    var _hmax = 20;
	var _wmax = 20;
	//@ min height in pixel
    var _hmin = 0;	
	var _wmin = 20;	
	//@ loop through matches selector
    jQuery("div#azIndex ul#nav li div").each(function(){
		//@ in/out handler
		jQuery(this).hover(
			//@ hover
			function(){				
				_activeTab = jQuery(this).find('strong').text().toLowerCase();				
				//@ child span expand
				jQuery(this).find('span').animate({height: _hmax+"px",width: _wmax+"px",top: "-140px"}, {queue:false, duration:300, easing:'easeOutBack',direction: 'up'});
				if(_activeTab=='s' || _activeTab=='t' || _activeTab=='u' || _activeTab=='v' || _activeTab=='w' || _activeTab=='x' || _activeTab=='y' || _activeTab=='z'){
					jQuery(this).find('p').css("margin-left", "-139px");
				}
				jQuery(this).find('p').show();
				//@ set active to current hovered	
				_active = jQuery(this);
			},
			//@ out
			function() {
				//@ slide back
				jQuery(_active).find('p').fadeOut('fast');
				jQuery(_active).find('span').animate({height: _hmin+"px",width: _wmin+"px",top: "0px"}, {queue:false, duration:300,easing:'easeInBack',direction: 'down'});
				//jQuery(_active).find('span').css('zIndex', '2');
			}
		);	
	});
});
