// 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() {
	
});




															/** END **/