jQuery(document).ready(function(){ 
//init cycle
	jQuery('.belt') 
	.after('<div id="nav">') 
	.cycle({ 
		fx:     'fade', 
		speed:  1000, 
		speedIn:	2000,  
		speedOut:   100,
		timeout: 6000, 
		pager:  '#nav' 
	});
//remove title tags on menu
	jQuery("li.cat-item a").each(function(){
		jQuery(this).removeAttr('title');
	});               

	jQuery("li.page_item a").each(function(){
		jQuery(this).removeAttr('title');
	});

	Cufon.set('fontFamily', 'ITC Avant Garde Gothic LT').replace('.aside h3');
	Cufon.set('fontFamily', 'ITC Avant Garde Gothic LT').replace('.menu', {hover: true});
	Cufon.set('fontFamily', 'ITC Avant Garde Gothic LT').replace('#slideshow h1');
	Cufon.now();
	
});

//init cufon

