$(document).ready(function(){

  $("a.creative").fancybox({
	  'frameWidth': 640,
		'frameHeight': 640
	});

  $('html').addClass('js');

  // Hide all the specified elements
  $('.hidden').hide();

  // Show all the specified elements
  $('.visible').show();

  $.fn.cycle.defaults.speed = 900;
  $.fn.cycle.defaults.timeout = 10000;

  $('.image_cycle').cycle({
    fx: 'fade'
  });

  $('#image_list a').lightBox();
  $('a[rel=lightbox]').lightBox();

  $('.toggle').click(function(){
    var container = $(this).attr("toggle");
    if ($(this).hasClass("toggle-up")) {
      $(this).removeClass("toggle-up");
    }
    else {
      $(this).addClass("toggle-up");
    }
    $(container).toggle('blind',{direction:'vertical'},500);
    return false
  });

  $('.blogs .blog:last').css('border-bottom', 'none');
  $('.blogs .blog .body img:first').addClass('first_img');

  $('.live_news').hover(function(){
    $('.live_news .menu').slideDown('fast');
  }, function(){
    $('.live_news .menu').slideUp();
  });


});

function set_banner_image(url, link) {
  $('#banner_image img').attr('src', url);
  $('ul.employees .employee').css('background-position', '0 0');
  $(link).css('background-position', '0 100px');
}

