// JavaScript Document

	   $(document).ready(
				function(){
					$('#news').innerfade({
						animationtype: 'slide',
						speed: 200,
						timeout: 5000,
						type: 'random',
						containerheight: '1em'
						
					});
					$('ul#yayincilar').innerfade({
						speed: 1000,
						timeout: 1500,
						type: 'sequence',
						containerheight: '220px'
					});

    				  $('#button').click(function () {
		  			  $('#how').slideToggle("fast");
					});
					  $('#button').toggle(function() {
						$(this).addClass('down');
					  }, function() {
						$(this).removeClass('down');
					  });

				    
  });
