$(function () {
  $('.slide-footer').marquee().mouseover(function () {
	  $(this).trigger('stop');
  }).mouseout(function () {
    $(this).trigger('start');
  });

  
  $('.toggle-slide').click(function(e) {
    if ($(this).hasClass('clicked')) {
    	$('#' + $(this).attr('rel')).animate({
    		'height' : '102px'
    	},
    	1000,
    	function() {} 
    	);
    	$(this).removeClass('clicked');
    }
    else {
    	$(this).addClass('clicked');
    	$('#' + $(this).attr('rel')).animate({
    		'height' : '1400px'
    	},
    	1000,
    	function() {} 
    	);    	
    }
    return false;
  }).addClass('toggle-slide-processed');
})

