$(document).ready(function(){
  //To switch directions up/down and left/right just place a "-" in front of the top/left attribute
  //Vertical Sliding
  $('.tx_teaserboxes_pi1_box_available').hover(function(){
    //$(".tx_ccteaserboxes_title a", this).css('color','#ffffff');
    //$(".tx_ccteaserboxes_title", this).css('background-image','url("fileadmin/shkkatalog/images/title_bg_act.jpg")');
  }, function() {
    //$(".tx_ccteaserboxes_title a", this).css('color','#000000');
    //$(".tx_ccteaserboxes_title", this).css('background-image','url("fileadmin/shkkatalog/images/Title_bg.jpg")');
  });
  
  
  $(".tx_teaserboxes_pi1_box_blocked_login").css('top','0px');

  $('.tx_teaserboxes_pi1_box_blocked').hover(function(){
    $(".tx_ccteaserboxes_please_login", this).css('color','#ffffff');
    $(".tx_ccteaserboxes_please_login", this).stop().animate({opacity:'0.8'},{queue:false,duration:300});
  }, function() {
    $(".tx_ccteaserboxes_please_login", this).css('color','#000000');
    $(".tx_ccteaserboxes_please_login", this).stop().animate({opacity:'0.4'},{queue:false,duration:300});
  });

});


