jQuery(document).ready(function($){

  $('#menu a.hover').live('click', function(){
    return false;
  });

  $('.owl').click(function(){
    $.scrollTo(0, 350);
    return false;
  });

  //Scroll functions
  $(function(){
  
    $(window).scroll(function(){

      //Fixed menu check
      if( $(window).scrollTop() > 303 ){
        $('#container').addClass('fixed-menu');
      }else if( $('#container').hasClass('fixed-menu') ){
        $('#container').removeClass('fixed-menu');
      }

      var scrolltop = 5 + ( $(window).scrollTop() / $('#container').height() ) * 100 + '%';
      $('#owl').css('top', scrolltop);
    });

    //Init scroll functions
    $(window).trigger("scroll");
  });

  
  /* =News items toggle
  -------------------------------------------------------------- */

  // ;$(function(){

    // $('.news-item > h3').prepend('<span class="toggle">-</span>&nbsp;');

    // $('.news-item h3').toggle(function(){
      // $(this).find('.toggle').text('+');
      // $(this).next().slideUp();
    // }, function(){
      // $(this).find('.toggle').text('-');
      // $(this).next().slideDown();
    // });
  // });
  
  //Init lazy load
  $('.lazy-load').appear(function() {
    $(this).find('img').fadeIn();
  });

  //Init colorbox
  $("a.colorbox").colorbox({maxWidth:"95%", maxHeight:"95%", fixed:"true"});
  
  /**
   * Stop IE functions
  */
  $('#ie6_banner .close').click(function(){
    $('#ie6_banner').hide();
  });
  
});
