jQuery(document).ready(function(){
	try {
		Cufon.replace('h2, h3, #site-menu li a .title, .composition-lead .title', { fontFamily: 'centurygothic' });
		Cufon.replace('#menu a, .composition-menu a, h4 span', { fontFamily: 'verdana' });
	} catch(err) {}
	jQuery('.totop').click(function () {
		scroll(0,0);
		return false;
	});
	jQuery('#header').flash({
		src: 'content/header.swf',
		width: 542,
		height: 220,
		expressInstall: true,
		wmode: 'transparent'
	});
	jQuery('#menu > li > ul').hide();
	jQuery('#menu > li.active-parent > ul').show();
	jQuery('#menu > li').not('.active-parent').hoverIntent(hoverIn,hoverOut);
	jQuery('#compositions').after('<div id="compositions-nav"><div id="compositions-nav-wrap"><div id="compositions-nav-inner">').cycle({ 
		fx:     'scrollHorz', 
		speed:  800, 
		timeout: 0, 
		pager:  '#compositions-nav-inner'
	});
});

function hoverIn(){ jQuery(this).children('ul').animate({height: 'toggle'}, 400);}
function hoverOut(){ jQuery(this).children('ul').animate({height: 'toggle'}, 400); }
