/* Author: Dom Ioanna */

// Resolve conflict issues w/ other libraries
jQuery.noConflict();

// Window load effects
// jQuery(window).load(function() {});

// When document loaded, effects
// jQuery(document).ready(function() {});

jQuery('.mirror').FontEffect({
    mirror:true,
    mirrorOffset    :-22,   // The distance from text
    mirrorHeight    :80,    // The height of the reflex (perc.)*
    mirrorDetail    :1,     // The reflex detail 1=high,2=medium,3=low
    mirrorTLength   :50,    // The length of the sfumature (perc.)*
    mirrorTStart    :0.2,   // The starting opacity of the reflex (0-1)
})

jQuery(function() {
        jQuery("#1, #2, #3").lavaLamp({
            fx: "backout", 
            speed: 700,
            click: function(event, menuItem) {
                return false;
            }
        });
    });
