$(document).ready(function() {
	

//  Initialize Backgound Stretcher	   
	$('#bgdiv').bgStretcher({
		images: [ 'img/sabine/sabine_roemer_bg3.jpg', 'img/sabine/sabine_roemer_bg2.jpg', 'img/sabine/sabine_roemer_bench.jpg', 'img/sabine/sabine_roemer_bg4.jpg'],
		imageWidth: 1200, imageHeight: 900
	});
	
	$('#toggleAnimation').click(function(){
       if($(this).val() == "Pause Animation"){
           $(this).val("Resume Animation");
           $(document).bgStretcher.pause();
       } else {
           $(this).val("Pause Animation");
           $(document).bgStretcher.play();
       }
	});
	
});
