﻿$(document).ready(function(){

	if ($("a[rel^='photo']").length >= 1) {
		$("a[rel^='photo']").prettyPhoto({
			animationSpeed: 'fast', /* fast/slow/normal */
			padding: 0, /* padding for each side of the picture */
			opacity: 0.8, /* Value betwee 0 and 1 */
			showTitle: true, /* true/false */
			allowresize: true, /* true/false */
			counter_separator_label: ' ze ' /* The separator for the gallery counter 1 "of" 2 */
		});
	};
	
	/*
	$("#in_productSlider").easySlider({
		auto: false,
		continuous: true,
		speed: 800,
		prevId: 'productSliderPrev',
		prevText: '&nbsp;',
		nextId: 'productSliderNext',	
		nextText: '&nbsp;'
	});
	*/
	
	$("#in_newsSlider").easySlider({
		auto: false,
		continuous: true,
		speed: 800,
		prevId: 'newsSliderPrev',
		prevText: '&nbsp;',
		nextId: 'newsSliderNext',	
		nextText: '&nbsp;'
	});
	
	
	$('#chooseLanguage').selectbox();
	
	$('#chooseLanguage_container li').click(function() {
				
		var language = $(this).attr('id')		
		languageHref = language.substring(21, 23)
		
		if (languageHref == 'cs') {
			window.open("/", "_self")
		} else {
			window.open("/" + languageHref + "/", "_self")
		}
		
	});
	
	/**************************
		SEARCH - PO KLIKNUTI ODSTRANI TEXT
	*/
	$('#searchTextInput').click(function() {			
		if ($(this).attr('value') == 'Hledaný výraz') {
			$(this).attr("value", "")
		} else if ($(this).attr('value') == 'Search word ') {
			$(this).attr("value", "")
		} else if ($(this).attr('value') == 'gesuchter Ausdruck') {
			$(this).attr("value", "")
		} else if ($(this).attr('value') == 'Искомое выражение') {
			$(this).attr("value", "")
		}
	});
	
	
	$('.jcarousel-skin-tango').jcarousel();
	
});

