jQuery(function($){
	$(document).ready(function(){
		$('.tabItem').not(':first').css('display', 'none');
		
		$('#produktliste li a').click(function(){
			return false;
		});
		
		$('#produktliste li ul li a').click(function(){
			
			$('#produktliste li').removeClass('active');
			$(this).parent().addClass('active');
			
			var getSlug = $(this).attr('href');
			
			$.ajax({
  				url: 'http://www.gzsh.de/wp-content/themes/gzsh/ajax-request.php?doAction=getPosts&get='+getSlug,
  				success: function(data) {
    				$('.entry-content').html(data);
    				var url = window.location.href;
    				url = url.split('#');
    				window.location.href = url[0] +'#search-content';
    				
    				//alert('Load was performed.');
  				}
			});
			
			return false;
		});
		
		
		$('#anbieterliste a').click(function(){
			
			$('#anbieterliste li').removeClass('active');
			$(this).parent().addClass('active');
			
			var getSlug = $(this).attr('href');
			
			$.ajax({
  				url: 'http://www.gzsh.de/wp-content/themes/gzsh/ajax-request.php?doAction=getAnbieter&get='+getSlug,
  				success: function(data) {
    				$('.entry-content').html(data);
    				var url = window.location.href;
    				url = url.split('#');
    				window.location.href = url[0] +'#search-content';
    				
    				//alert('Load was performed.');
  				}
			});
			
			return false;
		});
		
		
	});
});
