$(document).ready(function()
{

/*
=	FONT SWITCH
*/

	Cufon.replace('.rock');


/*
=	SCROLLING SIDEBAR QUOTES
*/

	$('ul#quotescroll').cycle({
		fx: 'fade',
		speed:  'slow',
		timeout: 10000			
		//cleartype: !$.support.opacity,
		//cleartypeNoBg:   false
	});
	
	

/*
=	CSS STYLE SWITCH
*/
	
	// Call stylesheet init so that all stylesheet changing functions 
	// will work.
	$.stylesheetInit();
	
	// When one of the styleswitch links is clicked then switch the stylesheet to
	// the one matching the value of that links rel attribute.
	$('.styleswitch').bind(
		'click',
		function(e)
		{
			$.stylesheetSwitch(this.getAttribute('rel'));
			Cufon.replace('.rock');
			return false;
		}
	);
	
	
	

});
