Cufon.replace('.cufon', {hover: true});

$(document).ready(function() {
	//pushes first content block down below header
	$('.content:first').addClass('first');
	//makes items flow nicely
	$('.content a.item:nth-child(4n+1)').addClass('end');
	//add actions for menu links
	$('#menu > h1').click(function() {
		$(this).next('.submenu').slideToggle();
		return false;
	});
	//setup simple thumbnail gallery
	$('.thumbs a').click(function() {
		$('.full_size').attr('src', $(this).attr('href'));
		return false;
	});
});

