var predchoziSet = 0;
var web = "http://www.pneuclub.cz/";

jQuery(function($){
	
	$('#logo').click(function() {
		window.location.href = web;
	});
	
	// ======================================= generování odkazů k obrázkům nad odkazem u výpisu článků ============================================
	$('.item .body img').click(function() {		
		document.location.href = $(this).parent().parent().find('h2 a').attr('href');			
	});	
});


// ----------------------------------------------------------------------------------------
	
function showCategories(text1, text2) {

	if($('#viewAll').html() == text1) {
	
		$('#hideMenu').slideDown("normal");		
		$('#viewAll').html(text2);
		
	} else {
	
		$('#hideMenu').slideUp("normal");
		$('#viewAll').html(text1);
	}
		
	return false;	
}

// ----------------------------------------------------------------------------------------
	
function showArticles(type) {

	if(type == 1) { // checeme zobrazit související
	
		$('#related').show();
		$('#new').hide();
		$('#relatedArticles').attr('class', 'deactive');
		$('#newsArticles').attr('class', 'active');
		
	} else { // zobrazit nejnovější články
	
		$('#new').show();
		$('#related').hide();
		$('#newsArticles').attr('class', 'deactive');
		$('#relatedArticles').attr('class', 'active');
	}
		
	return false;				
}
