//Cufon replace
$(document).ready(function() {
			Cufon.replace('h1, h2, h3, h4, h5, .kaartsectie, .marktprijs, .score, .glasfles', {fontFamily: 'font' });
			Cufon.replace('#buttons ul li', {hover:true, textShadow: '1px 1px #000000', fontFamily: 'font' });
			Cufon.replace('#footer, #sidemenu ul li ', {hover:true, textShadow: '1px 1px #000000', fontFamily: 'font' });
});

//Background
$(function(){$.fn.supersized.options = {
			startwidth: 1400,
			startheight: 845,
			vertical_center: 1,
			slideshow: 0,
			navigation: 0,
			transition: 1,
			pause_hover: 0,
			slide_counter: 0,
			slide_captions: 0,
			slide_interval: 6000};
		$('#supersize').supersized();	
	});
	
	

//Buttons
$(function() {
    var navButtons = '#buttons ul li .butcontain';
    $(navButtons).hover(function() {
			$(this).stop().animate({'top':'-30px'},200);
			}, function () {
			$(this).stop().animate({'top':'0px'},200)
        });
});

//Google
$(document).ready(function(){
	$("body.route #tekstveld img").fadeTo("fast", 1.0);

	$("body.route #tekstveld img").hover(function(){
		$("body.route #tekstveld img").fadeTo("fast", 0.6);
	},function(){
   		$("body.route #tekstveld img").fadeTo("fast", 1.0);
	});
});
