$(document).ready(function() {	

	// kliknutím na odkaz z třídou "switch_icon" získáme id bloku které chceme zobrazit
	$('a[name=switch_link]').click(function(e) {
		//Cancel the link behavior
		e.preventDefault();
		//Get the A tag
		var id = $(this).attr('href');

  	// Změní všechny aktivní na inactivní
//   	$('.active').attr('class','inactive');
  	$('.shown').removeClass('shown').addClass('hidden');

		//transition effect
		$(id).removeClass('hidden').addClass('shown');

	});
	
  var timer;

	// mouseover menu - rozbalení podstránek při najetí na menu
	$('li.menu_item').mouseover(function(e) {
		var id = $(this).attr('id');

    $('li#'+id+' ul').show();

      $('li#'+id+'').mouseleave(function(e) {
 
          $('li#'+id+' ul').hide();  
 
      });
	});


  $('.input_text').click(function (e) {
    var hodnota = $(this).attr('value');
    var popisek = $(this).attr('title');

    if(hodnota==popisek)
    {
      $(this).attr('value','')
    }
  });
  
  $('.textarea').click(function (e) {
    var hodnota = $(this).attr('value');
    var popisek = $(this).attr('title');

    if(hodnota==popisek)
    {
      $(this).attr('value','')
    }
  });

});


