// i4wifi.com javascript efekty

$(document).ready(function() {

// ----- Uvodni stranka

// ---------- i4wifi promo banner

// Hover
$("#hpRight p#i4wifiPromoImg, #hpRight p#i4wifiPromoTxt").hover(function() {
  $("#i4wifiPromoTxt").addClass("hover");
},function(){
  $("#i4wifiPromoTxt").removeClass("hover");
});

// Kliknuti
$("#hpRight p#i4wifiPromoImg, #hpRight p#i4wifiPromoTxt").click(function(event) {
  location.href=$("#i4wifiPromoTxt").find("a").attr("href");				  
});



// ----- Vypis produktu

// Hover na radek tabulky s cenami
$(".i4wifi-product-price-levels table.clickable tr").hover(function() {
  $(this).addClass("hover");
},function(){
  $(this).removeClass("hover");
});  	

// Kliknuti na radek tabulky s cenami
$(".i4wifi-product-price-levels table.clickable tr").click(function(event) {
  location.href=$(this).find("a").attr("href");				  
});





// ----- Detail produktu

// Hover na radek tabulky s cenami
$("#cross li").hover(function() {
  $(this).addClass("hover");
},function(){
  $(this).removeClass("hover");
});  	

// Kliknuti na radek tabulky s cenami
$("#cross li").click(function(event) {
  location.href=$(this).find("a").attr("href");				  
});

// Fancybox na fotce
$(".photo a").fancybox({ 'hideOnContentClick': true }); 


}); // $(document).ready(function()


