$(document).ready(function(){

	var html=$.ajax({
		cache: false,
		async: false,
		url: $('.cMenu > div:first > a').attr('href')
	}).responseText;
	$('#navcontainer').html($('#navcontainer',html).html());
	my_html = $('#navcontainer').html();
	
	$("#bottemnav li").each(function(){
	$(this).hover(function(){
		$(this).find('ul:first').show(400);
			//alert('show');
		},function(){
		$(this).find('ul:first').hide();
			//alert('hide');
		});


	});

});