$(document).ready(function() {
	
	Cufon.set('fontFamily', 'Calibri-Bold');
	Cufon.replace('#menu-top > li > a:not(".home")', {hover: true});
	Cufon.replace('#menu-top h4 a', {hover: true});
	Cufon.replace('#top-search > form a', {hover: true});
	Cufon.replace('.page-subtitle');
	Cufon.replace('#menu-sub', {hover: true});
	Cufon.replace('#breadcrumbs a', {hover: true});
	Cufon.replace('h4');

	Cufon.set('fontFamily', 'Calibri');
	Cufon.replace('#menu-top-bar .sub li a', {hover: true});
	Cufon.replace('h1');
	Cufon.replace('h2');
	Cufon.replace('h3');
	
	
	$("#menu-top li:not('.active') a.home").hover(
		function() {
			$(this).children('img').attr('src', 'img/home-icon-active.gif');
		},
		function() {
			$(this).children('img').attr('src', 'img/home-icon.gif');
		}
	);
	
	$("#breadcrumbs li.home a").hover(
		function() {
			$(this).children('img').attr('src', 'img/home-icon.gif');
		},
		function() {
			$(this).children('img').attr('src', 'img/home-icon-footer.gif');
		}
	);
	
	
	$('#fader-visual-controls img').supersleight();
	$('.menu-top-sub-bottom').supersleight();
});

