$(document).ready(function(){  
	var height = Math.max($('#contentrt').height(),$('#contentlt').height()+200);
	$('#contentrt').height(height+'px');
	$('#contentlt').height(height+'px');
	

	$('#navigation li').mouseover(function(){	
										//   alert('1');
		$(this).children('ul').css('display','block');
		//if IE set margin-left
		if($.browser.msie){
			$('#navigation li ul').css('margin-left',(-2-$(this).width())+'px');
		}
		
	})
	$('#navigation li').mouseout(function(){
		$(this).children('ul').css('display','none');
	})
		
	
	$('#cdcontent').corner("bottom");
	$('#contentrt_foot').corner("bottom");

});
