if (parseInt($('body').css('fontSize')) !=16) {
	$('body').css('fontSize','16px');
}	
$('#menu li.'+document.body.getAttribute('id')).append($('<span class="menuTri"></span>'));
var setUpHrefs = function() {
	$('a[href]').each( function() { 
		var $t = $(this), 
		h = this.href,
		loc = location.href;
		if ( 
			h===loc || 
			((h.indexOf('index') > -1) && (document.body.getAttribute('id')==='home') && ($t.attr('id') != 'langDeutsch') 
			)) 
		{
			$t.addClass('cur').click(function(e) {
				e.preventDefault();
			});
		}
	});
}
setUpHrefs();
//START IE
/*@cc_on
//START IE6
if (browserIE6) { 
$('#contLeft p:first-child, #contLeft h3 + p').css('margin-top','0');
}//end IE6
@*/
//end IE
