﻿$(document).ready(function(){
	
	/* SLIDER REFERENCI NA HOME */
	if ($('#home-slider').length) {
		homeslider();
		/* POKUD PROBEHNE RESIZE, TAK SMAZU SLIDER A ZAVOLA HO ZNOVA */
		$(window).resize(function() {
			$('#home-slider').html('<div id="home-slider-content"></div>');
			homeslider();
		});
	}
	
	
	$('#vimeo').click(function() {
		$(this).html('<object width="860" height="494"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5334860&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00B4FF&amp;fullscreen=1&autoplay=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5334860&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=59a5d1&amp;fullscreen=1&autoplay=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="860" height="494"></embed></object>')
	});
	
	
	$('.jobsForm').click(function() {
		$('#form-header').css('display', 'none')
		$('#form-overlay').css('height', $('#page').height())
		$('#form-overlay').css('display', 'block')
		
		$('#form-content').css('top', $(window).scrollTop() + 100)
		
		formContentHtml = '<a href="javascript:void(0)" class="close">zavřít</a>'
		formContentHtml += '<div id="in_form-content">'
		formContentHtml += '</div>'
		
		$('#form-content').html(formContentHtml)
		
		$.post(
			"/jobs-ajax",
			{},
			function(data){				
				$("#in_form-content").html(data);
			}
		);
		
		positionStart = (($(window).width()/2) - 250) + "px";
		positionEnd = (($(window).width()/2) - 350) + "px";
		
		setTimeout(function() {
			$("#form-content").animate({
				left: positionStart
			}).animate({
				left: positionEnd
			}, "normal");
		}, 1000);
		
		$('#form-content .close').click(function() {		
			$('#form-overlay').removeAttr('style')
			$('#form-content').removeAttr('style')
			$('#form-content').html('')
			return false;
		});
		$('#form-overlay').bind('click', function(){
			$('#form-overlay').removeAttr('style')
			$('#form-content').removeAttr('style')
			$('#form-content').html('')
		});
		
		return false;
	});
	
	
	
	
});	


/* HOME SLIDER */
function homeslider(){
	var resolutionwidth = $(window).width();
	var slidercontent = $('#home-slider-content');
	var sliderwidth = "0";
	var slidercontentul = "";
	if (resolutionwidth < 1500) {
		sliderwidth = "1500";
	} else if (resolutionwidth < 1700) {
		sliderwidth = "1700";
	} else {
		sliderwidth = "2000";
	}
	$('#home-slider').css('width', resolutionwidth);
	slidercontentul += '<a href="/znovin-znojmo"><img src="/content/img/slider-home/' + sliderwidth + '/znovin.jpg" width="' + sliderwidth + '" height="430" alt="" /></a>'
	slidercontentul += '<a href="/darky-mall"><img src="/content/img/slider-home/' + sliderwidth + '/mall.jpg" width="' + sliderwidth + '" height="430" alt="" /></a>'
	slidercontentul += '<a href="/zetor"><img src="/content/img/slider-home/' + sliderwidth + '/zetor.jpg" width="' + sliderwidth + '" height="430" alt="" /></a>'
	slidercontentul += '<a href="/lanex-as"><img src="/content/img/slider-home/' + sliderwidth + '/lanex.jpg" width="' + sliderwidth + '" height="430" alt="" /></a>'
	slidercontentul += '<a href="/gumotex-nafukovaci-lode"><img src="/content/img/slider-home/' + sliderwidth + '/gumotex.jpg" width="' + sliderwidth + '" height="430" alt="" /></a>'
	$(slidercontent).html(slidercontentul);
	
	$('#home-slider-content').nivoSlider({effect: 'fade', pauseTime: 5000, controlNav: false, directionNavHide: false});
	$('#home-slider-content').css('width', resolutionwidth);
	
}


function sendJobsForm(sender, args) {

	// ziskani nadrazeneho formulare
	var form1 = $(sender).parents('form:first').get(0);
	
	$.post(
		"/jobs-ajax",
		$(form1).find(":input").serializeArray(),
		function(data){
			$("#in_form-content").html(data);
		}
	);

	return false;
};


function showPF2011() {
	$('#pf2011-header').css('display', 'none')
	$('#pf2011-overlay').css('height', $('#page').height())
	$('#pf2011-overlay').css('display', 'block')
	
	$('#pf2011-content').css('top', $(window).scrollTop() + 200)
	
	positionStart = (($(window).width()/2) - 200) + "px";
	positionEnd = (($(window).width()/2) - 284) + "px";
	
	setTimeout(function() {
		$("#pf2011-content").animate({
			left: positionStart
		}).animate({
			left: positionEnd
		}, "normal");
	}, 1000);
	
	$('#pf2011-content .close').click(function() {		
		$('#pf2011-overlay').css('display', 'none')
		$('#pf2011-content').css('display', 'none')
		return false;
	});
	$('#pf2011-overlay').bind('click', function(){
		$('#pf2011-overlay').css('display', 'none')
		$('#pf2011-content').css('display', 'none')
	})
}


function sendContactForm(sender, args) {

	// ziskani nadrazeneho formulare
	var form1 = $(sender).parents('form:first').get(0);
	
	$.post(
		"/kontakty-ajax",
		$(form1).find(":input").serializeArray(),
		function(data){
			$("#contactForm").html(data);
		}
	);

	return false;
}
