$(document).ready( function() {
	
	var sli = 0;
	var slimax = $('.slogan_h').size();
	$('.slogan_h').not(':first').hide();	
	$('.pagination a').eq( 0 ).addClass('active');
	if ($('.slogan_h').eq( 0 ).find('.headconthrefsource').html() == '') {
		$('.headconthref').hide();
	}
	if ($('.slogan_h').eq( 0 ).find('.headcontsrcsource').html() == '') {
		$('#teaser_image').hide();
	}
	
	showSlogan = function() {		
		$('.slogan_h').eq( sli ).fadeOut('slow', function() {
			sli++;
			if (sli >= slimax) sli = 0;
			$('.slogan_h').eq( sli ).fadeIn('slow');			
			$('.pagination a').removeClass('active');
			$('.pagination a').eq( sli ).addClass('active');
			if ($('.slogan_h').eq( sli ).find('.headconthrefsource').html() == '') {
				$('.headconthref').hide();
			} else {
				$('.headconthref').show();
				$('.headconthref').attr('href', $('.slogan_h').eq( sli ).find('.headconthrefsource').html() );
			}
			
			if ($('.slogan_h').eq( sli ).find('.headcontsrcsource').html() == '') {
				$('#teaser_image').fadeOut();
			} else {
				$('#teaser_image').attr('src', $('.slogan_h').eq( sli ).find('.headcontsrcsource').html() );
				$('#teaser_image').fadeIn();
			}
			
			setTimeout( 'showSlogan()', 5000 );
		});				
	};
	
	setTimeout( 'showSlogan()', 3000 );
	
	var searchforhome = $('input[name=keyword]').val();
	
	$('input[name=keyword]').click(function() {
			if ( $(this).val() == searchforhome ) {
				$(this).attr('value', '');
			}
	});

	$('input[name=keyword]').blur(function() {
		if ( $(this).val() == '' ) {
			$(this).attr('value', searchforhome);
		}
	});
	
	$('#searchformhome').submit( function() {
		var attr = $('#search input[name=keyword]').val();
		var url = $(this).attr('action');
		url = url + ( attr != '' ? '?fi=S0{' +  EFF.URLEncoder(attr) + '}' : '' );
		window.location = url;
		//nastav filtr a presmeruj
		return false;
	});
	
});
