//
// @author [Cassette]
// @copyright [2010] 
// Software on this site is copyright 2010
// 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 
//

$(document).ready(function(){
$('#header').animate({
   opacity : 100
  }, 15000, function() {
  });
    $('#header-head').delay(2000).animate({
   left : 10
  }, 1000, function() {
    $("#header-logo").fadeIn(1000, function(){});
  });
  $(".menu-item, .menu-item-left, .menu-item-right").hover(function() {
            //$(this).css('color', '#fff');
            $(this).children('div').fadeIn('800');
            
                 },function() {
                     //$(this).css('color', 'rgb(0,164,228)');
                $(this).children('div').fadeOut('800');
                
       });
}); 
