$(function(){
	$('h2').pir({
		color : '00244c',
		font : 'PrivaTwoPro'
	});
	$('#mainmenu a').pir({
		color: '545454',
		hoverColor: '0f355b',
		font : 'PrivaTwoPro',
		va : 'middle'
	});

	$('#project-selection-default').click(function(){
		$(this).hide();
		$('#project-selection-list').show();
	});
	$('#project-selection-button').click(function(){
		$('#project-selection-default').show();
		$('#project-selection-list').hide();
	}).hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});
	
	
	$('.selectbox').mouseenter(function() {
		$('ul', this).show().data('keep', true);
	}).mouseleave(function() {
		var that = $('ul', this);
		that.data('keep', false);
		setTimeout(function() {
			if(!that.data('keep')) {
				that.hide();
			}
		}, 500);
	});
	$('.selectbox .selected a').click(function() {
		return false;
	}).css('cursor', 'default');
});
