$(function () {
	$('#headerMenu ul').hide();
	$('#headerMenu ul li:last-child').css('border', 'none');
	$('#headerMenu li').hover(function () {
		$(this).children('ul').show();
	}, function () {
		$(this).children('ul').hide();
	});
	$('#componentContent img.textdoc').css('width', '350px');
	$('#componentContent .block img').css('width', '330px');
	$('#componentColumn img, #contentColumn img').css('width', '280px');
	$('a[rel="lightbox"]').fancybox({
		titleShow: false
	});
	$('.scroll-pane').jScrollPane();
});
