// JavaScript Document

$(document).ready(function() 
{
   $("div.vysledek").hover(function() 
   								{
									//alert("aaa")
								 	$(this).css("background","#f5ffd9");
							   }, 
						function () 
							{
   								 $(this).css("background","#ffffff");
							});
							
	$("div.vysledek").click(function()
							{
								var href = $(this).find("a").attr("href");
								window.open(href,"_top");
								
							})


							   
 });

