


$(document).ready(function(){
	

	Cufon.replace(['.topMenu li a'],	 { fontFamily: 'Helvetica',  hover: {
		color: '#000000'
	} });

	
	$('a img, input[type=image], .mainLogo a').not('.slidesContainer a img').hover(
	  function () {
		$(this).fadeTo("fast", 0.7);
	  }, 
	  function () {
		$(this).fadeTo("fast", 1);
	  }
	);	
	
	$(".redirectGoogleMaps").click(function(){
		var adres = $(this).attr("href");
		adres = adres + $(".txtPostcode").val();
		window.location.href = adres;
		return false;

	});

	$('.box-machine .picture a').fancybox({ 
					'padding' 			:0, 
					'hideOnContentClick': true, 
					'titleShow'     	: false,
					'margin'			: 0,
					'showCloseButton'	: true
				});    
    
 });

