/**
 * @(#)ignition.js, v 1.0 2010/10/12
 *
 * Collection of JavaScript utilities authored and contributed
 * by the software engineering team of Ignition72
 * ---------------------------------------------------------------- *
 * @document   $Id: ignition.js, v 1.0 2010/10/12 6:34 PM ews Exp $
 * @author     Ignition72 <info@ignition72.com>
 * @version    v 1.0 2010/10/12
 * @usage      <script type="text/javascript" src="ignition.js"></script>
 */

/**
 * Transition handler for Men Reshade
 * @added 2010-10-12
 */


/*
var mrUrl = "http://www.goldwell-northamerica.com/site/products/for-men/men-reshade/";
var rmUrl = document.URL;
if (mrUrl == rmUrl) {
    var img1 = document.createElement( "img" );
    img1.src = "http://www.goldwell-northamerica.com/site/images/backgrounds/darker_hair.png";
    $('body').append( img1 );
    var fx1 = new Fx.Tween( img1 );
//    fx1.set( 'opacity', 0 );
//    fx2.set( 'opacity', 0 );
    setTimeout( function () 
    {
        fx1.start( 'opacity', 0, 100 );
        setTimeout( function () 
        {
            var img2 = new Image(); 
            img2.src = '/site/images/backgrounds/blurb.png';
            appendChild( img2 );
            var fx2 = new Fx.Tween( img2 );
            fx2.start( 'opacity', 0, 100 );
        }, 2000 );
    }, 1000 );
}
*/

/* -- END -- */
