function add(){
	a = $('#left').height();	
	$('#newsletter').height(a-320);
	$('#nav td').hover(
		function(){
			$(this).addClass('active');	
		},
		function(){
			$(this).removeClass('active');
		}
		
	);
};
