$(document).ready(function(){
	
	$(document).pngFix();

	$('div#header h1').click(function(){
		
		window.location = '/';
	});

	$('div#navigation li.top').each(function(){
		
		var children = $(this).find('ul');
		
		if (children.length > 0){

			$(this).find('a.top').click(function(){
				
				$(this).closest('li').find('ul').toggle();
				$(this).blur();
				return false;
			});
		}
	});

	$('#content-head .col-2 p:first').addClass('date');
});
