$(function() {

// Sample sifr usage - remove if not needed

	// intPadding array order is: left, top, right, bottom - must match css for corresponding element
	$("div#title-wrapper h1").sifr( { strSWF: './flash/sabon.swf', strColor: '#2C3554', intPadding: [0, 0, 11, 0], strCase: 'upper', strWmode:'transparent'} );
	$("div#title-wrapper h2").sifr( { strSWF: './flash/sabon.swf', strColor: '#939598', intPadding: [26, 5, 11, 0], strCase: 'upper', strWmode:'transparent'} );

	$('div#content h1').sifr(
		{ strSWF: 'flash/sabon.swf', strColor: '#2C3554', strWmode: 'transparent', intPadding: [0, 0, 0, 0], strCase: 'upper' },
		{ expressInstall: true }
	);
	
	$('div#content h2').sifr(
		{ strSWF: 'flash/sabon.swf', strColor: '#676666', strWmode: 'transparent', intPadding: [0, 0, 0, 0], strCase: 'upper' },
		{ expressInstall: true }
	);
	$('div#content h3').sifr(
		{ strSWF: 'flash/sabon.swf', strColor: '#676666', strWmode: 'transparent', intPadding: [0, 0, 0, 0], strCase: 'upper' },
		{ expressInstall: true }
	);

// Adds hover class for IE and animation for drop down nav - remove if not needed
/*Enable if Flyouts are added	
	$("ul#nav-primary li").hover(
        function(){ $("ul", this).fadeIn("fast"); }, 
        function() { 
		$("ul", this).hide();  
		} 
    );
    if (document.all) {
        $("ul#nav-primary li").hoverClass("sfhover");
		$("ul#nav-primary li ul li").hoverClass("sfhover");
    }
	*/
	
});

// Function to add/remove "over" class for drop down nav - remove if not needed
/*Enable if Flyouts are added	
$.fn.hoverClass = function(c) {
	return this.each(function(){
		$(this).hover( 
			function() { $(this).addClass(c);  },
			function() { $(this).removeClass(c); }
		);
	});

};   
*/