// Common Javascript Functions
															/** FUNCTIONS **/


function fixIE6flicker(fix) {
	/*	Fixes the background flicker when 
		hovering over anchors in IE6
	*/
	try {
		document.execCommand('BackgroundImageCache', false, fix);
	}
	catch(err) { }
}
fixIE6flicker(true);


$(document).ready(function() { 
	/*	Rotate images in the .rotate list
		requires the innerfade.js plugin
	*/
	$('.rotate').show();
	$('div#header').removeClass('header-bg');
	$('.rotate').innerfade({ 
		speed: 'slow', 
		timeout: 10000, 
		type: 'sequence',
		containerheight: '116px'
	});
});






															/** END **/