//
// @author [Cassette]
// @copyright [2011]
// Software on this site is copyright 2011
// Cassette Pty Ltd.
// All Rights Reserved. Copying, Editing or
// Distributing this software is strictly
// forbidden without permission from
// Cassette Pty Ltd.
// for more information please contact
// Cassette www.cassette.cc 
//

function rollover(){
    $('#email-button').hover(function() {
                var fade = $('> div', this);
                if (fade.is(':animated')) {
                  fade.stop().fadeTo(120, 1);
                } else {
                fade.fadeIn(120);
            }
            }, function () {
            var fade = $('> div', this);
            if (fade.is(':animated')) {
              fade.stop().fadeTo(1000, 0);
            } else {
              // fade away slowly
              fade.fadeOut(1000);
            }
          });
}

$(document).ready(function()
{
$.supersized({slides:[ {image : 'http://www.yaroyaro.com/images/gui/background.jpg', title : 'Yaro Yaro - website coming soon'} ]});
rollover();
       
}); 
