$(document).ready(function(){

    //When Mouse rolls over li
    $(".li_ul").mouseover(function(){
        $(this).stop().animate({height:'25%'},{queue:true, duration:1000, easing: 'easeInBack'})

		/*$( "#"+$(this).attr('id')+" a"     ).each(function(e,i){ 

		//alert( $(i).find(".p").css('background-color') );

			if( $(i).find(".p").css('background-color')=="rgb(51, 51, 51)" || $(i).find(".p").css('background-color')=="#333" || $(i).find(".p").css('background-color')=="333" ){
				
				alert(true);
				
			}

		});*/

    });

    //When Mouse cursor removed from li
    $(".li_ul").mouseout(function(){

var _b_status = "false";

		
		$( "#"+$(this).attr('id')+" a"     ).each(function(e,i){ 

		/*alert( $(i).find(".p").css('background-color') );*/

			if( $(i).find(".p").css('background-color')=="rgb(51, 51, 51)" || $(i).find(".p").css('background-color')=="#333" || $(i).find(".p").css('background-color')=="333" ){

			}else{
				_b_status = "true";
			}

		});		
		
	if(_b_status=="true"){
		
	}else{
		$(this).stop().animate({height:'25px'},{queue:true, duration:1500, easing: 'easeOutBack'})
	}

        	

		
    });






});
