$(document).ready(function(){
	$('div.flashBanner').pngFix( );

    $('a.videoIris').flash(
        { width: 570, height: 450 },
        { version: 8 },
        function(htmlOptions) {
            $this = $(this);
                htmlOptions.src = $this.attr('href');
            $this.before($.fn.flash.transform(htmlOptions));
            }
    	);
    	
    var val1 = "";
        val2 = "";
        val3 = "";
        val4 = "";
        val5 = false;
        val6 = false;
        val7 = false;
        val1 = $.cookie("mail_Prichod");
	    val2 = $.cookie("mail_Odchod");
	    val3 = $.cookie("mail_Rok1");
	    val4 = $.cookie("mail_Rok2");
	    val5 = $.cookie("mail_PotvrdeniE-mail");
	    val6 = $.cookie("mail_PotvrdeniTelefon");
	    val7 = $.cookie("mail_PotvrdeniFax");
	/*if (val1 == null && val2 == null){
		$("#mail_Prichod").attr('selectedIndex', 0);
		$("#mail_Odchod").attr('selectedIndex', 0);
	} else {  */
        $("#mail_Prichod").attr('selectedIndex', val1);
        $("#mail_Odchod").attr('selectedIndex', val2);
        $("#mail_Rok1").attr('selectedIndex', val3);
        $("#mail_Rok2").attr('selectedIndex', val4);
        if (val5 == "true") {
        $("input[name=mail_PotvrdeniE-mail]").attr('checked',true);
        } else {
        $("input[name=mail_PotvrdeniE-mail]").removeAttr('checked');
        }
        if (val6 == "true") {
        $("input[name=mail_PotvrdeniTelefon]").attr('checked',true);
        } else {
        $("input[name=mail_PotvrdeniTelefon]").removeAttr('checked');
        }
        if (val7 == "true") {
        $("input[name=mail_PotvrdeniFax]").attr('checked',true);
        } else {
        $("input[name=mail_PotvrdeniFax]").removeAttr('checked');
        }
    /*}*/
});

function OnEmailInputChange(obj)
{
	if(jQuery.trim(obj.value) == ''){
		obj.value = ' ';
        }
	$.cookie(obj.name, obj.value);
}

