// JavaScript Document
$(function() {
	$( "button, input:submit, a", ".login_button" ).button();
	$( "button, input:submit, a", ".send_order" ).button();
	$( "button, input:submit, a", ".prepocitat_kosik" ).button();
	$( "button, input:submit, a", ".vymazat_kosik" ).button();
	$( "button, input:submit, a", ".send_otazka" ).button();
	$( ".search_button button:first" ).button({
		icons: {
        	primary: "ui-icon-search"
		},
            text: true,
	});
	$( ".search_button1 button:first" ).button({
		icons: {
        	primary: "ui-icon-search"
		},
            text: true,
	});	
	$( "#produkt_tabs" ).tabs();
	$( "#add_to_cart" ).dialog({
				modal: true,
				buttons: {
				Ok: function() {
					$( this ).dialog( "close" );
					window.location.href="";
							   }
				}
	});
	$( "#prazdny_nakup" ).dialog({
			modal: true,
			buttons: {
				Ok: function() {
					$( this ).dialog( "close" );
					window.location.href="";
				}
			}
	});
	$( "#dialog" ).dialog({
				modal: true,
				buttons: {
				Ok: function() {
					$( this ).dialog( "close" );
					window.location.href="";
							   }
				}
	});
	$( "#del_item" ).dialog({
				modal: true,
				buttons: {
				Ok: function() {
					$( this ).dialog( "close" );
					window.location.href="http://www.tehno.sk/nakupny-kosik";
							   }
				}
	});	
	$( "#logout" ).dialog({
				modal: true,
				buttons: {
				Ok: function() {
					$( this ).dialog( "close" );
					window.location.href="index.php";
							   }
				}
	});
});

function submenu(cislo) {
	skry_menu();
	var s = document.getElementById("submenu"+cislo);
		if (s.style.display == 'none') {
			s.style.display = 'block';
		}else{
			s.style.display = 'none';
		}
}
function skry_menu() {
	for (i=1; 1==1; i++) {
		if (document.getElementById("submenu"+i)) {
			document.getElementById("submenu"+i).style.display = 'none';
		}else{
			break; // ukoncit cyklus for
		}
	}
}
