
Cufon.DOM.ready(function() {
				//	Cufon.replace('h3', {fontWeight: '300', letterSpacing: '1px'});
					Cufon.replace('h2', { letterSpacing: '-1px', fontSize: '31px', fontWeight: '700'});
				//	Cufon.replace(document.getElementById('light'), {letterSpacing: '-1px', fontSize: '31px', fontWeight: '300'});
					Cufon.replace('li a', { hover: true });
});	
		

$(document).ready(function() {
			
			//fade toggle function
			jQuery.fn.fadeToggle = function(speed, easing, callback) {
				return this.animate({opacity: 'toggle'}, speed, easing, callback);

			}; 
				
				//fade in effect
				//$('body').hide();
				//$('body').fadeIn(1000);
				
				$('.tevreden').css({opacity:0.45});
				
				$('.tevreden').bind("mouseenter", function(){
			      //$(this).animate({ borderTop: "3px solid #333" }, 300);
				  $(this).fadeTo(500, 0.99);
				  return false;
			    });	

				$('.tevreden').bind("mouseleave", function(){
			      //$(this).animate({ borderTop: "3px solid #333" }, 300);
				  $(this).fadeTo(500, 0.45);
				  return false;
			    });		
			
			
});

