
$(document).ready(function() { 
	$("#switch_piano .float_right, #switch_hifi .float_left, #kies_links img, #kies_rechts img").css({opacity: 0.7});
	$("#switch_piano .float_right, #switch_hifi .float_left, #kies_links img, #kies_rechts img").hover(function(){
		$(this).fadeTo("fast", 1.0);
	},function(){
		$(this).fadeTo("fast", 0.7);
	});
	$(".aanbieding img, .merk img").css({opacity: 0.8});
	$(".aanbieding img, .merk img").hover(function(){
		$(this).fadeTo(100, 1.0);
	},function(){
		$(this).fadeTo("fast", 0.8);
	});
	$('.mail_holder').html('<a href="mailto:info@bender-piano-hifi.nl">info@bender-piano-hifi.nl</a>')
	$(".aanbieding a").fancybox({ 
		'hideOnContentClick': true,
		'zoomSpeedIn': 400, 
		'zoomSpeedOut': 200, 
		'overlayShow': true 
	}); 
});

