$(function() {
	
	var parentLi=$('#nav-items li.parent'), parenta=$('a', parentLi), childDiv=$('div.nav-sub-items'), childDivState = false;
	var speed = 300;
	var yPosDown='-=55px';
	var yPosUp='+=55px';
	
//	parentLi.bind('click', function(){
//
//		if(!childDivState){
//			childDiv.stop().animate({'top':yPosUp}, speed);
//			childDivState = true;//up
//			return;
//		}
//		if(childDivState){	
//			childDiv.stop().animate({'top':yPosDown}, speed);
//			childDivState = false;//down
//			return;			
//		}	
//			
//	 });	
			
	if( parenta.hasClass('current') ){
		if(!childDivState){
			childDiv.stop().animate({'top':yPosUp}, 10);
			childDivState = true;//up
			return;
		}		
	}
});
