﻿$(document).ready(function() { 
   
// Clanek perex hover
   $(".articlePerex").hover(function() {
	 $(this).addClass("hover");
   },function(){
	 $(this).removeClass("hover");
   });  	 
   
// Clanek perex kliknuti
   $(".articlePerex").click(function(event) {
	  location.href=$(this).find("h2 a").not(".feed-name").attr("href");							  
   });    
   
// Zdroj ve vypisu zdroju kliknuti
   $(".feedListItem").not(".missing").click(function(event) {
	  location.href=$(this).find("h2 a").attr("href");							  
   });    
      
      
// Nahrada textu v hricce Poznate kategorii na strance Kategorie
   $("#whatIsOnPictures img").hover(function() {
     $("#whatIsOnPicturesHead").text($(this).next(".title").text());
     $("#whatIsOnPicturesHead").addClass("showResult");
   },function(){
     $("#whatIsOnPicturesHead").text("Poznáte kategorii?");
     $("#whatIsOnPicturesHead").removeClass("showResult");
   });  

// Tipy na vikendy
   $(".region ul li").hover(function() {
     $(this).addClass("hover");
   },function(){
     $(this).removeClass("hover");
   });  
   
   $(".region ul li").click(function() {
      location.href = $(this).find("a").attr("href")
   });

   $(".region ul").each(function() {
     $(this).find("a:first").addClass("first");
   });  

 });
