$(document).ready(function(){
	/* png fix */
	$(this).pngFix();

	/* fancybox */
	$('.media, .help').fancybox();
	
	/* use list element as href */
	$('#subnav li').click(function(){
		var $href = $(this).children('a').attr('href');
		location.href = $href;
	});
	
});
