
  $(document).ready(function(){
  
	$("#carrerForm input[type='text']:first").focus();
	
	$("#popDetailTable").hide();		
	$("#popDetailChbx").click( function(){ $("#popDetailTable").toggle(); });

	$("#plAcomware").show();	
	$(".inradio").change(function(){
		var rel = $(this).attr("rel");
		var sRel = "#"+rel;
		
		$(".pl").hide();
		$(sRel).show();
		
	});

	if( $(".artDetail img").attr("align")=="left" ){
		$(".artDetail img").addClass("imgLeft");
	}
	if( $(".artDetail img").attr("align")=="right" ){
		$(".artDetailimg").addClass("imgRight");
	}

  // FACEBOOK pluginy
	var cultureInfo = $("meta[http-equiv='Content-languague']").attr("content");
	$("#fbLike").html('<iframe src="http://www.facebook.com/plugins/like.php?locale='+cultureInfo+'&amp;href='+document.location+'&amp;layout=standard&amp;show_faces=false&amp;width=400&amp;action=like&amp;colorscheme=light&amp;height=40" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:400px; height:40px;" allowTransparency="true">Facebook</iframe>');

	/*
	$("#verticalTabs2-env .text").hide();
	$("#verticalTabs2-env #c1").show();
	*/

	$("#control a").click(function(){
		var myHref = $(this).attr("href");	// ziskani retezce z odkazu
			myHref = myHref.substring(1);	// odseknuti #

		$("#control a").removeClass("active");
		$(this).addClass("active");

		// prace s obsahovymi prvky
		$("#verticalTabs2-env .text").hide();
		$("#verticalTabs2-env .text").each(function(){				
			if( $(this).attr("id") == myHref ){ $(this).show(); }
		});

		return false;			
	});

  	// definice menu
  	$("#header").ndMenu();
  	// uprava pro 3.uroven menu
  	$("#header ul ul ul").css({'top':'-10px', 'left':'180px'});
  	$("#header .nav li").hover(
  		function(){
  			$(this).css('z-index',10000);
  		},
  		function(){
  			$(this).css('z-index',1);
  		}	
  		
  	);
	$("#form").ndFormValidator({autoSizeAlert:"false"});
	$("#miniContact").ndFormValidator({autoSizeAlert:"false"});
	
	$('a.nw').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});	
	
	$("a[rel='nw']").click( function() {
		window.open( $(this).attr('href') );
		return false;
	});			
	
	/* novy mini formular */
	$("#minicontact2").ndFormValidator({errorToAlert: "true"});
	
	$("#yourMessage")
	.click(function(){
		if( $(this).val() == "Zpráva pro nás..." ){
			$(this).text("");
		}
	})
	.blur(function(){
		if( $(this).val() == "" ){
			$(this).text("Zpráva pro nás...");
		}
	});
		

	// souhlasim
	$("#souhlas").click( function(){
		
		if( $(this).attr("checked") == true ){ $("#submitArea").fadeIn(500); }
		else{ $("#submitArea").fadeOut(500); }
		
	} );
	
	// odkud se dozvedeli
	var hider ;
	$(".kdeControl").change(function(){
		
		var parent = $(this).parents("tr");
		var myRel = $(this).attr("rel");
		var myTd = "td." + myRel;
		hider = parent.find( myTd );
		
		if( $(this).attr("checked") == true ){
			hider.removeClass("hider");
			hider.find("input").removeAttr("readonly");
		}
		else{
			hider.addClass("hider");
			hider.find("input").attr("readonly","readonly");				
		}
		
	});
	
	// zmena roletky
	$(".selector").change(function() {
		
		var myVal = $(this).attr("value");
		var myId = $(this).attr("id");
		var myIdSelector = "."+ myId +"Jine";
		
		if( myVal == "jine" ){ 
			$(myIdSelector).show();
			$(myIdSelector).find("input").focus();
		}
		else{ $(myIdSelector).hide(); }
	});		

  });	

function random(X){
    return Math.floor(X * (Math.random() % 1));
}

function randomBetween(MinV, MaxV){
  return MinV + random(MaxV - MinV + 1);
}


function GenerateCustomFckGallery(files_array)
{
		var result="";
		for (var a=0;a<files_array.length;a++)
			result+="<a href=\""+files_array[a].path+"\" class=\"nyroModal\" rel=\"lightbox\"><img alt=\"\" src=\""+files_array[a].thumb+"\" /></a>";
		return result;
}

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

