	 
	 
	   // When the document loads do everything inside here ...
     $(document).ready(function(){
     	
	 $('.clanky_ajax_obsah').load('/modules/rightbar/clanky.php');	//by default initally load text from boo.php
         $('#ajax_menu a').click(function() { //start function when any link is clicked
		 				$(".clanky_ajax_obsah").show();
						 var content_show = $(this).attr("title"); //retrieve title of link so we can compare with php file
							$.ajax({
							method: "get",url: "/modules/rightbar/clanky.php",data: "clanky_ajax_filter="+content_show,
							success: function(html){ //so, if data is retrieved, store it in html
							$(".clanky_ajax_obsah").show(); //animation
							$(".clanky_ajax_obsah").html(html); //show the html inside .content div
					 }
				 }); //close $.ajax(
         }); //close click(
	 }); //close $(
	 

	 
	   // When the document loads do everything inside here ...
     $(document).ready(function(){
     	
	 $('.model_vyber').load('/modules/motodatabaza/ajaxnaplnac.php');	//by default initally load text from boo.php
         $('#ajax_select').change(function() { //start function when any link is clicked
		 				$(".model_vyber").show();
						 var content_show = $(this).attr("value"); //retrieve title of link so we can compare with php file
							$.ajax({
							method: "get",url: "/modules/motodatabaza/ajaxnaplnac.php",data: "vyrobca="+content_show,
							success: function(html){ //so, if data is retrieved, store it in html
							$(".model_vyber").show(); //animation
							$(".model_vyber").html(html); //show the html inside .content div
					 }
				 }); //close $.ajax(
         }); //close click(
	 }); //close $(
	 
	 
	 
	      $(document).ready(function(){
     	
	 $('.katnaplnac').load('/modules/clanky/variables.php?topkategoria');	//by default initally load text from boo.php
         $('#ajax_select_kat').change(function() { //start function when any link is clicked
		 				$(".katnaplnac").show();
						 var content_show = $(this).attr("value"); //retrieve title of link so we can compare with php file
							$.ajax({
							method: "get",url: "/modules/clanky/variables.php",data: "topkategoria="+content_show,
							success: function(html){ //so, if data is retrieved, store it in html
							$(".katnaplnac").show(); //animation
							$(".katnaplnac").html(html); //show the html inside .content div
					 }
				 }); //close $.ajax(
         }); //close click(
	 }); //close $(
	 
	 
	 
	 	   // When the document loads do everything inside here ...
     $(document).ready(function(){
         $('.anketa_ajax a').click(function() { //start function when any link is clicked
		 				$(".anketa_ajax").show();
						 var content_show = $(this).attr("title"); //retrieve title of link so we can compare with php file
							$.ajax({
							method: "get",url: "/modules/rightbar/anketa.php",data: "anketa_hlas="+content_show,
							success: function(html){ //so, if data is retrieved, store it in html
							$(".anketa_ajax").show(); //animation
							$(".anketa_ajax").html(html); //show the html inside .content div
					 }
				 }); //close $.ajax(
         }); //close click(
	 }); //close $(