/**
 * Common public functions
 * requires jquery
 */

/**
 * Odkazy ven - do noveho okna
 */
$(document).ready(function() {
	$("a.out").click(function() {
		return !window.open($(this).attr("href"));
	});
	$("#login_switch").change(function() {
		value = $("#login_switch").val();
		if (value == 1) {
			window.location = 'http://vsoh.moggis.cz/';
			}
		else if (value == 2) {
			$(".form_haggis").hide();
			$(".form_hc").show();
			$(".form_ic").hide();
			}
		else if (value == 3) {
			$(".form_haggis").hide();
			$(".form_hc").hide();
			$(".form_ic").show();
			}


	});
	$(".moggis_out").focus(function() {
			window.location = 'http://vsoh.moggis.cz/';
	});
	
	
});

