$(document).ready(function(){
	
	
	  $("#rightCol").css({
				height: $("#content").height()+"px" 
		 })
	
	  $('.animateMenu li.parent').hover(  
         function (){
			 
			 //verific daca meniul e orizontal sau vertical
			 var o1 = '';
			 var vertical = true;
			 
			 if($(this).prev()) o1 = $(this).prev().offset();
			 if($(this).next()) o1 = $(this).next().offset();
			 
			 if(o1!='') {
			 	var o  = $(this).offset();
				
				if(o1.top == o.top) vertical = false;
			 }
			 
			 if(vertical){
			 	 $('ul:first', this).css({
				 	top: "-0px",
				 	left: ($(this).outerWidth())+"px",
					position: "absolute"
				 })
			 }
			 
			 //animez submeniul
             $('ul:first', this).slideDown(100);  
         },   
         function (){  
             $('ul:first', this).slideUp(100);           
         }  
     );  
	
	
});





