$(document).ready(function() {
  $('#slideshow').cycle({ 
      fx: 'scrollHorz', 
      timeout:  8000, 
      speed:    300,
      sync:   1,
/*      speed:    300, 
      prev:    '#prev', 
      next:    '#next',*/
      cssBefore: { width: '100% !important', height: '100% !important'},
      cssAfter:{ width: '100% !important', height: '100% !important'}
  }); 	
  $('#slideshow').css("width","100%").css("height","100%");

  $('.minipush').hover(
    function() {
      $(this).animate({
        width: '+=10',
        height: '+=10',
        marginLeft: '-=5',
        marginRight: '-=5'
      }).addClass('test');
    }, function() {
      $(this).animate({
        width: '-=10',
        height: '-=10',
        marginLeft: '+=5',
        marginRight: '+=5'
      }).removeClass('test');
    });
    
    $('#reply-title').click(function(){
      $('#respond').toggle('slow');
      return false;
    });

    $('.comment-reply-link').click(function(){
      $('#respond').hide();
      $('#respond').toggle('slow');
      return false;
    });

    $('#cancel-comment-reply-link').click(function(){
      $('#respond').hide();
      return false;
    });
});
