/* ----------------------------------------------
    Autor:
      Jan Dousek (honzik.dousek@gmail.com)
    Posledni uprava:
      30.6.2011
---------------------------------------------- */

/* JQUERY ------ */
jQuery(document).ready(function(){

	/* OZNACOVANI POLOZEK --- */
    jQuery("ul li:last-child,td:last-child,th:last-child,tr:last-child").addClass("last-item");
    jQuery("ul li:first-child,td:first-child,th:first-child,tr:first-child").addClass("first-item");
    
    
    
    $("a[href^=http]").each(function(){
		if(this.href.indexOf(location.hostname) == -1) {
	      $(this).addClass("external"); 

	    }
	});
    
    $("a[href^=link/http]").each(function(){
		
	      $(this).addClass("external"); 

	   
	});

	$("a.external").click( function(e)
	{ 
		 window.open(this.href);return false;
	});
	
	$(function() {
		$(".toggleInfo .info ").hide();
		$(".toggleInfo .clickable").click(function() 
		{	
			//$(".toggleInfo .info ").toggle(500);		
			$(".info",$(this).parent()).toggle(500);
		});
	});
	
	//box menu
	$('#box-mamavit').mouseover(function() {
		  $('#box1').css({'background-image':'url("images/bg-box-mamavit.png")'});
		});
	$('#box-mamavit-dha').mouseover(function() {
		  $('#box1').css({'background-image':'url("images/bg-box-mamavit-dha.jpg")'});
		});
	$('#box-mamastrie1').mouseover(function() {
		  $('#box1').css({'background-image':'url("images/bg-box-mamastrie.png")'});
		});
	
	
	$('#box-mamastrie4').mouseover(function() {
		  $('#box4').css({'background-image':'url("images/bg-box-mamastrie.png")'});
		});
	$('#box-mamatest').mouseover(function() {
		  $('#box4').css({'background-image':'url("images/bg-box-mamatest.png")'});
		});
	$('#box-noball').mouseover(function() {
		  $('#box4').css({'background-image':'url("images/bg-box-noball.png")'});
		});
	$('#box-eladen').mouseover(function() {
		  $('#box4').css({'background-image':'url("images/bg-box-eladen.png")'});
		});
	
	
	//tydny 
	$("#teh-tydny div" ).hide();
	
	$("#teh-tydny ul li a" ).click(function() 
	{	
		var idN = $(this).attr('href');
		if(idN.indexOf("#"))
		{
			idN = idN.substring(idN.indexOf("#"));
			$("#teh-tydny div" ).hide();
			$(idN).show();
		}
		return false;
	});
	
	
	  /* COLORBOX  --- */
	jQuery("a[rel='colorbox']").colorbox({transition:"elastic",
		'maxHeight':'95%',
		'maxWidth':'80%'});
	


  /* ROZBALOVANI A SKRYVANI  --- */
  jQuery(".toggle-container").hide();
	jQuery(".trigger").click(function(){
		jQuery(this).toggleClass("trigger-ac").next().slideToggle("fast");
		return false;
	});

	jQuery("#click").click(function(){
		jQuery('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
		return false;
	});
	
});
