$(document).ready(function(){
			$('#news table').each(function(){
				$(this).removeAttr('width');
				$(this).removeAttr('height');
				$('tr', this).each(function(index){
					if(index == 0){
						$(this).addClass('date');
					} else if(index == 1){
						$('td',this).addClass('jqmWindow');
						$('td',this).append('<br/><br/><p align="center"><b><small>Klikněte mimo pro zavření</small></b></p>')
						$('td',this).jqm();												
					} else if(index == 2){
						$(this).addClass('text');
						$('td',this).append('<a href="#"> více</a>');
						}
					});
			
		});
			$('#news a').click(function(){
					table = $(this).closest('table');
					$('tr', table).each(function(index){
						if(index == 1){
							$('td',this).jqmShow(); ;
						}
						});
					return false;
				});

	});
								
