$(document).ready(function(){
	$('.tabs ul li').click(function(){
		$('.tabs ul li').removeClass('active');
		$(this).addClass('active');
		for(var i=1;i<4;i++)
		$('#content'+i).hide();
		$('#conten'+$(this).children('a').attr('rel')).show();
	});
	
	$('.child ul li').hover(function(){
		
		
		$(this).each(function(index){
		
		//alert(index);
		
		});
		
	});
	
	
	$('.child ul li').each(function(){ 
	
//		alert( $(this).children('').length );
		var ul = $('ul', this).length;
		if( ul > 0 )
		{
			//this.attr("id","1aa");	
		}

//	alert('a');
	
	});

});
