var predchoziSet = 0;
var web = "http://www.stylehunter.cz/";

jQuery(function($){
	
	$('#logo').click(function() {
		window.location.href = web;
	});
	
	
	// nastavíme autocompleter pro vyhledávací pole 
	
	env = '/index.php/';
	
	// -------------------------------------------- VYHLEDÁVÁNÍ --------------------------------------------

	$("#hledejText").autocomplete(env + "article/getAutocomplete", {
		matchContains: true,
		minChars: 2
	});
	
	
	// -------------------------------------------- PŘEVZATO OD ADYHO --------------------------------------------
	
	$(".article").click(function() {
		window.location.href = web+$(this).find("a").attr("href");
	});
	/*
	$(".article").mouseover(function() {
		var x = $(this).find("div");
		x.addClass("article-hover");
	});
	
	$(".article").mouseout(function() {
		var x = $(this).find("div");
		x.removeClass("article-hover");
	});
	*/
	$(".sponsorLogo").click(function() {
		window.location.href = $(this).find("a").attr("href");
	});
	
});

// ----------------------------------------------------------------------------------------
	
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;				
}

