// JavaScript Document
$(document).ready(function(){

        //  Initialize Backgound Stretcher	   

		$(document).bgStretcher({

			images: ['http://farm6.static.flickr.com/5309/5664016900_f17f05e871_b.jpg'],

			imageWidth: 1024, imageHeight: 768, slideShowSpeed:3000,nextSlideDelay:10000

		});

		

		$('#toggleAnimation').click(function(){

	       if($(this).val() == "Pause Animation"){

	           $(this).val("Resume Animation");

	           $(document).bgStretcher.pause();

	       } else {

	           $(this).val("Pause Animation");

	           $(document).bgStretcher.play();

	       }

		});

	});

