// JavaScript Document
function CheckId(id){
	var hod = document.getElementById(id).value;
	if(hod==''){
		return false;
	}else{
		return true;	
	}
}
function CheckForm(){
	var ret = CheckId('jmeno');
	ret = CheckId('kontakt') && ret;
	ret = CheckId('dotaz') && ret;
	return ret;
}
function ProhoditObrazek(id){
		var idcko = $("#reference_nahled_value").val();
		$("#reference_nahled_"+idcko).hide('highlight',{},1000,function(){
																		$("#reference_nahled_"+id).show('highlight',{},10);
																	   });
		$("#reference_nahled_value").val(id);
	}
	$(document).ready(function(){
    $('#flash_motory').flash(
        { src: '/flash/motory.swf',
          width: 990,
          height: 248,
          wmode: 'transparent' },
        { version: 8 }
    );
	$('#flash_loziska').flash(
        { src: '/flash/loziska.swf',
          width: 990,
          height: 248,
          wmode: 'transparent' },
        { version: 8 }
    );
	$("#novinky").accordion({
			autoHeight: false,
			active: false,
			collapsible: true
		});
	$('a.popup').lightBox();
});
