$(document).ready(function(){

    $('#menu a').each(function(){
			$(this).attr("hideFocus", "true").css("outline", "none");
	});

	var pathname = window.location.pathname;
	$('#foot .footLeft').html(
		'<iframe src="http://www.facebook.com/plugins/like.php?href=http://www.dr-baetje.de'+pathname+'&locale=de_DE&send=false&layout=button_count&width=150&show_faces=true&action=like&colorscheme=light&font=arial&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;background:#C6DDEB;" allowtransparency="true"></iframe>'
	);
	

});

function checkupload() {
	if($('#file').val() == '') {
		var check = confirm('Sie haben keine Datei zum hochladen angegeben. Wollen Sie trotzdem fortfahren?');
		if(check) {
			this.submit();
		} else {
			return false;
		}
	} else {
		this.submit();
	}
}
