/* Author: Dave Mellett */

/* Google Web Fonts */
/* http://sixrevisions.com/css/font-face-web-fonts-issues/ */
/* Local fonts created using: http://www.fontsquirrel.com/fontface/generator */

WebFontConfig = {
	google: { families: [ 'Crimson+Text::latin' ] },
    fontinactive: function (fontFamily, fontDescription) {
   //Something went wrong! Let's load our local fonts.
		WebFontConfig = {
			custom: { families: ['CrimsontextRoman'],
			urls: ['fonts/stylesheet-crimson.css']
			}
		};
		loadFonts();
	}
};

function loadFonts() {
	var wf = document.createElement('script');
	wf.src = ('https:' == document.location.protocol ? 'https' : 'http') + '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
	wf.type = 'text/javascript';
	wf.async = 'true';
	var s = document.getElementsByTagName('script')[0];
	s.parentNode.insertBefore(wf, s);
}
(function() {
	//Once document is ready, load the fonts.
	loadFonts();

})();




/* hover 4 ie6 */
$(".ie6 li, a").hover(
  function () {
    $(this).addClass("hover");
  },
  function () {
    $(this).removeClass("hover");
  }
);






















