


// SIFR headings
$(document).ready(function(){
			$.sifr({
				path: 'swf/',
				save: true
			});
			$('h1').sifr({ font: 'dearjoe' });
			$('h3').sifr({ font: 'dearjoe' });
		});


 //UItschuiven boek op homepage 1
 function bookHalf(){
//  alert("This function was successfully triggered via the flash movie.");
  $(document).ready(function(){
      $("#block").animate({ 
        height: "350px"
      }, 1000 );
    });
	
  }


//UItschuiven boek op homepage 2
 function bookFull(){
//  alert("This function was successfully triggered via the flash movie.");
  $(document).ready(function(){
      $("#block").animate({ 
        height: "540px"
      }, 1000 );
    });
	
  }
  


 
 //  Postcode veld
  
  $(document).ready(function(){

	$(".postcodeVeld").focus(function(){
	$(this).attr("style", "background-color: #FFF; color: #000; border: 1px solid #FF6600;");
	$(this).val("");
	
	});
	
	
		$(".postcodeVeld").blur(function(){
	//$(this).attr("style", "background-color: #edebe5; color:#AAA");
	//$(this).val("1234 AB");
	
	});
		
	  //  Informatie formulier

	$(".infoForm input").focus(function(){
	$(this).attr("style", "background-color: #FFF; margin: 0 0 0 10px");
	
	});
	
		$(".infoForm input").blur(function(){
	$(this).attr("style", "color: #FF0000");
	$(this).attr("style", "background-color: #edebe5; margin: 0 0 0 10px");
	
	
	});	
	
	});


