$(document).ready(function() {
	
	// HP SLIDER
	
	$('#hp_banner_wrapper .slider').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	// HOPME PAGE Container redirect
	
	$('#hp_banner_wrapper .container').click(function() {
		window.location = $(this).find('a').attr('href');
	
	});
	
	// LIGHTBOX
	
	$('.lb_image').lightBox();
	
	$('.switch').hide();
	
	$('.switcher:checked').each(function(index) {
		$('tr[rel="'+ $(this).attr('value') +'"]').show();
	});
	
	$('.switcher').click(function() {
		var switchID = $(this).attr('value');
		$('.switch').hide();
		$('.switch[rel="'+switchID+'"]').show();
	});
	
	// MAPS OPEN WINDOW //
	
	$('.show_slatina_map').click(function(){
		window.open('/inc/scripts/map_slatina.php', 'Continue_to_Application','width=600,height=400');
		return false;
	})
	
	$('.show_ibc_map').click(function(){
		window.open('/inc/scripts/map_ibc.php', 'Continue_to_Application','width=600,height=400');
		return false;
	})
	
	// validateForm FORM SUBMIT
	
	$('.validateForm').submit(function(ev) {
		
						
		var errMsg = '';
			
		$('.required').each(function() {
		
			if($(this).val() == '' || $(this).val() == 0) {
			
				if(errMsg != '') {
					errMsg = errMsg + ', ';
				} else {
					errMsg = '<span style="color: #cc0000;">Musíte vyplnit povinná pole: </span>';
					
				} // end: if
				errMsg = errMsg + $(this).attr('rel');
			}
		});
								
		if(errMsg.length > 0) {
			ev.preventDefault();
			$.prompt(errMsg);
		} else if ($('.conditionAproval').length ) {
			if ($('.conditionAproval').is(':not(:checked)')) {
				$.prompt( $('.conditionAproval').attr('rel') );
				ev.preventDefault();
			} // end: if
		} // end: if
		
	}); // END: .validateForm.submit
	
	
});

