$(document).ready(function(){
	$('td.full_cell').hover(
		function(){
			var image = $(this).children('input[name=images]').attr('value').split(':');
			if (image[1].length > 1) $(this).css({'background':'url('+image[1]+')'});
			var text = $(this).children('input[name=texts]').attr('value').split(':');
			if (text[1].length > 1) $(this).children('a').html(text[1]);
		},
		function(){
			var image = $(this).children('input[name=images]').attr('value').split(':');
			$(this).css({'background':'url('+image[0]+')'});
			var text = $(this).children('input[name=texts]').attr('value').split(':');
			$(this).children('a').html(text[0]);
		}
	);
	$('td.full_cell').click(function(){
		var url = $(this).children('input[name=url]').attr('value');
		if ($(this).children('input[name=url]').attr('alt') == 1)
		{
			var image = $(this).children('input[name=images]').attr('value').split(':');
			$('#center').html('&nbsp;').css({'background':'url('+image[2]+') no-repeat 50% 50%'});
		}
		else if (url.length > 5) document.location = url;
	});
});