function galleryLigthbox() 
{
        $("a[rel='colorbox_image']").colorbox();
        $("a[rel='colorboxFilm']").colorbox({iframe:true, innerWidth:425, innerHeight:344});
}

function slide() 
{
  $('#topSlideshow').cycle({
      fx:       'fade',
      delay:    -2000
      }
  );
}

function galleryChooseHoverText()
{   
  $('.gallery_index_element_wrap').hover(function(){  
    $(this).children('.gallery_index_comment').stop().animate({"margin-top": '0px'}, 600);} 

    , function(){  
    $(this).children('.gallery_index_comment').stop().animate({"margin-top": '117px'}, 600);});  
  
}

function filmChooseHoverText()
{   
  $('.film_index_element_wrap').hover(
  function()
  {
    
    $(this).children('.film_index_comment').stop().animate({"margin-top": '0px'}, 600);
  }, 
  function()
  { 
    
    $(this).children('.film_index_comment').stop().animate({"margin-top": '-22px'}, 600);
  });  
  
}


$(document).ready(function () {
  $('.gallery_index_comment').css('opacity', .6);
  galleryChooseHoverText();
  galleryLigthbox();
  filmChooseHoverText();
  slide();
});







