﻿/*****************************************************************************
It is adviced to place the sIFR JavaScript calls in this file, keeping it
separate from the `sifr.js` file. That way, you can easily swap the `sifr.js`
file for a new version, while keeping the configuration.

You must load this file *after* loading `sifr.js`.

That said, you're of course free to merge the JavaScript files. Just make sure
the copyright statement in `sifr.js` is kept intact.
*****************************************************************************/

// Make an object pointing to the location of the Flash movie on your web server.
// Try using the font name as the variable name, makes it easy to remember which
// object you're using. As an example in this file, we'll use Futura.



var test = { src: 'http://ianmartinphotography.com/GeneratedItems/test.swf' };
			var helvetica = { src: 'http://ianmartinphotography.com/GeneratedItems/helvetica.swf' };
			sIFR.activate(test);
			$(window).load(function() {          
                 to = setTimeout(function ()    
                  {sIFR.replace(test, 
                  {selector: 'p', 
                  css: '.sIFR-root { letter-spacing: .3; leading: 0; background-color: #e6e6e6; color: #79868e; font-size: 15px; text-align: justify; text-indent: 20px;}  a { color: #555055; text-decoration: none;} a:hover { color: #79868e; text-decoration: none;}'}); }, 
                 100); // call sIFR code after this many milliseconds
                  });
                  
                  
                  $(window).load(function() {          
                 to = setTimeout(function ()    
                  {sIFR.replace(test, 
                  {selector: 'h4', 
                  css: '.sIFR-root { background-color: #e6e6e6; color: #79868e; font-size: 15px; text-align: right; }'}); }, 
                 100); // call sIFR code after this many milliseconds
                  });
                  
                  
                  $(window).load(function() {          
                 to = setTimeout(function ()    
                  {sIFR.replace(test, 
                  {selector: '.foo', 
                  css: '.sIFR-root { background-color: #e6e6e6; color: #79868e; font-size: 15px; text-align: left; }'}); }, 
                  100); // call sIFR code after this many milliseconds
                  });
			
		
			
					
		
			
	$(document).ready(function() {          


         $('#next').click(

         function() {
    
                 to = setTimeout(function ()    
                  {sIFR.replace(test, 
                  {selector: 'p', 
                  css: '.sIFR-root { letter-spacing: .3; leading: 0; background-color: #e6e6e6; color: #79868e; font-size: 15px; text-align: justify; text-indent: 20px;}'}); }, 
                  1); // call sIFR code after this many milliseconds
                  }); });
   
    $(document).ready(function() {          

         $('#next').click(

         function() {
    
                 to = setTimeout(function ()    
                  {sIFR.replace(test, 
                  {selector: 'h4', 
                  css: '.sIFR-root { background-color: #e6e6e6; color: #79868e; font-size: 15px; text-align: right;  }'}); }, 
                  1); // call sIFR code after this many milliseconds
                  }); });
                  
     
    $(document).ready(function() {          

         $('#next').click(

         function() {
    
                 to = setTimeout(function ()    
                  {sIFR.replace(test, 
                  {selector: '.foo', 
                  css: '.sIFR-root { background-color: #e6e6e6; color: #79868e; font-size: 15px; text-align: left;  }'}); }, 
                  1); // call sIFR code after this many milliseconds
                  }); });

