$(document).ready(function() {
	var k = top.location + 'a';
	if(k.indexOf('kiosek') != -1) {
		$("a[target='_blank']").attr({target: "_self"});
		$("a[rel='external']").attr({target: "_self"});
		$("a[href$='pdf']").removeAttr("href");
		$("a[href$='avi']").removeAttr("href");
		$("a[href$='mpg']").removeAttr("href");
		$("a[href~='download']").removeAttr("href");
		$("a[href^='http']").removeAttr("href");
		$("a[href^='mailto:']").removeAttr("href");
		$("a[href^='http://www.mapy.cz']").removeAttr("href");
	}
});


