$(document).ready(function() {	

  //Get the screen height and width
  var maskHeight = $(window).height();
  var maskWidth = $(window).width();
  
  //Set height and width to mask to fill up the whole screen
  $('#mask').css({'width':maskWidth,'height':maskHeight});



	//select all the a tag with name equal to modal
	$('a#dotaz_move_link').click(function(e) {
			e.preventDefault();
  	$('#dotaz_move').slideDown('slow');
  	$('#button_show').slideUp('slow');  	
	});
	
 
	$('a#close_dotaz').click(function(e) {
			e.preventDefault();
  	$('#dotaz_move').slideUp('slow');
  	$('#button_show').slideDown('slow');
	});
	
	
	$('a#slider_link').click(function(e) {
			e.preventDefault();
  	$('#slider').slideDown('slow');
	});
	
	var soucet = $('#soucet').html();
  $('#soucet').html('<input type="hidden" name="soucet" value="'+soucet+'"/>');

});
