$(document).ready(function(){
	initExternalLinks();

	$("#searchPanel input.text").focus(function(){
		var text = $(this).val();
		$(this).attr("title",text);
		$(this).val("");
	});
	$("#searchPanel input.text").blur(function(){
		var text = $(this).attr("title");
		var value = $(this).val();
		if (value == "")
		{
			$(this).val(text);
			$(this).attr("title","");
		}
	});
	
	$('.studentItem .studentContent').css('display','none');
	
	$(".studentItem .more .link").click(function(){
		if ($(this).attr("class") == "link more")
		{
			$(this).parent("p").parent(".studentItem").find(".studentContent").show();
			$(this).attr("class","link less");
			$(this).html("Méně informací");
		}
		else
		{
			$(this).parent("p").parent(".studentItem").find(".studentContent").hide();
			$(this).attr("class","link more");
			$(this).html("Více informací");
		}
	});
});

function initExternalLinks() {
	var h = window.location.host.toLowerCase();
	$("a[href^='http']:not([href^='http://" + h + "']):not([href^='http://www." + h + "']), a[href$='.pdf']").attr("target", "_blank").addClass('external');
}