// dom ready!!
$(document).ready(function(){

  // preload navigation hover images
  jQuery.preLoadImages("/images/navigation/button_agentur_1.png", "/images/navigation/button_home_1.png", "/images/navigation/button_impressum_1.png", "/images/navigation/button_kontakt_1.png", "/images/navigation/button_news_1.png", "/images/navigation/button_referenzen_1.png", "/images/navigation/button_rss_1.png");
  // preload all small hover images
  jQuery.preLoadImages("/images/entries/small/agentur_1.png", "/images/entries/small/blogpost_1.png", "/images/entries/small/leistung_1.png", "/images/entries/small/pressemeldung_1.png", "/images/entries/small/referenz_1.png", "/images/entries/small/tweet_1.png");
  // preload all half hover images
  jQuery.preLoadImages("/images/entries/half/agentur_1.png", "/images/entries/half/kompetenz_1.png", "/images/entries/half/leistung_1.png", "/images/entries/half/referenz_1.png", "/images/entries/half/thema_1.png");
  // preload all large hover images
  jQuery.preLoadImages("/images/entries/large/agentur_1.png", "/images/entries/large/kompetenz_1.png", "/images/entries/large/leistung_1.png", "/images/entries/large/referenz_1.png", "/images/entries/large/thema_1.png");

  // custom cursors
  $('#gallery.running').mouseenter(function(){
    if (slideshow_running) {
      $('.custom_cursor').hide();
      $('#pause_cursor').show();
    };
  });
  $('#next_layer').mouseenter(function(){
    if (!slideshow_running) {
      $('.custom_cursor').hide();
      $('#next_cursor').show();
    };
  });
  $('#prev_layer').mouseenter(function(){
    if (!slideshow_running) {
      $('.custom_cursor').hide();
      $('#prev_cursor').show();
    };
  });
  $('#gallery').mousemove(function(e){
    $('.custom_cursor').css('left', e.pageX-30).css('top', e.pageY-30);
  });
  $('#gallery').mouseout(function(){
    $('.custom_cursor').hide();
  });
  $('#gallery.running').click(function(){
    stopSlideshow();
  });
  $('#next_layer').click(function(){
    if (!slideshow_running) {
      $.galleria.next();
    };
  });
  $('#prev_layer').click(function(){
    if (!slideshow_running) {
      $.galleria.prev();
    };
  });
  // image gallery on entries#show
  $('#all_images').addClass('gallery_source'); // adds new class name to maintain degradability
  $('ul.gallery_source').galleria({
    history   : false, // activates the history object for bookmarking, back-button etc.
    clickNext : false, // helper for making the image clickable
    insert    : '#current_image', // the containing selector for our main image
    onImage   : function(image) { // let's add some image effects
      // fade in the image
      image.css('display','none').fadeIn(600);
    }
  });

  // just a jquery ghostie plugin
  $(".ghost_text").ghostText();

  // track clicked tweets with google analytics
  $(".entry_wrapper.tweet.entry_partial").click(function (e) {
    var to_param = $(this).attr("id");
    pageTracker._trackPageview("/page/" + to_param);
  });

  $('.tweet_small_ie').mouseover(function(){
    $(this).children(":first").show();
  });

  $('.tweet_small_ie').mouseout(function(){
    $(this).children(":first").hide();
  });


});