$(function(){
	$('#navigation li').bind('mouseenter', function() {
		var nav = $(this).find(' > ul')
		if (nav.hasClass('level-1')) {
			nav.css('left', '0px').css('top', $(this).height() + 'px').show(100);
		} else {
			nav.css('left', ($(this).position().left + $(this).width() + 1)  + 'px')
			   .css('top', ($(this).position().top) + 'px').show(100);
		}
	}).bind('mouseleave', function() {
		$(this).find('ul').stop(true, true).css('display', 'none');
	});
	
	$('#content .file-link-pdf').each(function() {
		$('<img />').attr('alt', 'pdf').attr('src', $.baseUrl + '/images/icons/pdf.png').prependTo($(this));
	});
});