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

jQuery(function($){
	
	$('#logo').click(function() {
		window.location.href = web;
	});
	
	
	$('#hledejText').focus(function() {
	
		if($('#hledejText').val() == 'modní trendy') {
			
			$('#hledejText').val('');
		}
	});
	
	$('#hledejText').blur(function() {
	
		if($('#hledejText').val() == '') {
			
			$('#hledejText').val('modní trendy');
		}
	});	
});


// ----------------------------------------------------------------------------------------
	
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;				
}